|
From: <ls...@us...> - 2007-06-26 17:36:29
|
Revision: 3332
http://jnode.svn.sourceforge.net/jnode/?rev=3332&view=rev
Author: lsantha
Date: 2007-06-26 10:36:26 -0700 (Tue, 26 Jun 2007)
Log Message:
-----------
Use variable number of arguments in main method.
Modified Paths:
--------------
trunk/fs/src/fs/org/jnode/fs/jfat/command/JGrubInstallCommand.java
Modified: trunk/fs/src/fs/org/jnode/fs/jfat/command/JGrubInstallCommand.java
===================================================================
--- trunk/fs/src/fs/org/jnode/fs/jfat/command/JGrubInstallCommand.java 2007-06-25 20:38:29 UTC (rev 3331)
+++ trunk/fs/src/fs/org/jnode/fs/jfat/command/JGrubInstallCommand.java 2007-06-26 17:36:26 UTC (rev 3332)
@@ -78,7 +78,7 @@
* @param args
* @throws Exception
*/
- public static void main(String[] args) throws Exception {
+ public static void main(String... args) throws Exception {
new JGrubInstallCommand().execute(new CommandLine(args), System.in, System.out, System.err);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|