make/jdk/src/classes/build/tools/generatecurrencydata/GenerateCurrencyData.java
branchJDK-8215445-branch
changeset 57083 947cfcf92dbe
parent 57074 12615de8335e
--- a/make/jdk/src/classes/build/tools/generatecurrencydata/GenerateCurrencyData.java	Wed Dec 19 03:35:40 2018 -0800
+++ b/make/jdk/src/classes/build/tools/generatecurrencydata/GenerateCurrencyData.java	Wed Dec 19 14:42:34 2018 +0100
@@ -136,44 +136,44 @@
     private static String currenciesWithMinorUnitsUndefined;
 
     public static void main(String[] args) {
-	    InputStream in = System.in;
+        InputStream in = System.in;
         // Look for "-o outputfilename" option
         for (int n = 0; n < args.length; ++n) {
             if (args[n].equals("-o")) {
-				++n;
-				if (n >= args.length) {
-					System.err.println("Error: Invalid argument format");
-					System.exit(1);
-				}
-				try {
-					out = new DataOutputStream(new FileOutputStream(args[n]));
-				} catch ( FileNotFoundException e ) {
-					System.err.println("Error: " + e.getMessage());
-					e.printStackTrace(System.err);
-					System.exit(1);
-				}
-			} else if (args[n].equals("-i")) {
-				++n;
-				if (n >= args.length) {
-					System.err.println("Error: Invalid argument format");
-					System.exit(1);
-				}
-				try {
-					in = new FileInputStream(args[n]);
-				} catch ( FileNotFoundException e ) {
-					System.err.println("Error: " + e.getMessage());
-					e.printStackTrace(System.err);
-					System.exit(1);
-				}
-			} else {
-				System.err.println("Error: Invalid argument " + args[n]);
-				System.exit(1);
-			}
+                ++n;
+                if (n >= args.length) {
+                    System.err.println("Error: Invalid argument format");
+                    System.exit(1);
+                }
+                try {
+                    out = new DataOutputStream(new FileOutputStream(args[n]));
+                } catch ( FileNotFoundException e ) {
+                    System.err.println("Error: " + e.getMessage());
+                    e.printStackTrace(System.err);
+                    System.exit(1);
+                }
+            } else if (args[n].equals("-i")) {
+                ++n;
+                if (n >= args.length) {
+                    System.err.println("Error: Invalid argument format");
+                    System.exit(1);
+                }
+                try {
+                    in = new FileInputStream(args[n]);
+                } catch ( FileNotFoundException e ) {
+                    System.err.println("Error: " + e.getMessage());
+                    e.printStackTrace(System.err);
+                    System.exit(1);
+                }
+            } else {
+                System.err.println("Error: Invalid argument " + args[n]);
+                System.exit(1);
+            }
         }
 
         if (out == null) {
-			System.err.println("Error: Invalid argument format");
-			System.exit(1);
+            System.err.println("Error: Invalid argument format");
+            System.exit(1);
         }
 
         format = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss", Locale.US);