Reformatted Ranges.

This commit is contained in:
Evgeny Gerashchenko
2012-07-14 12:38:49 +04:00
parent 15d469156a
commit 07347e20a9
+3 -1
View File
@@ -669,9 +669,10 @@ public class Ranges {
return CharRange.empty; return CharRange.empty;
} }
} }
public static void main(String[] args) { public static void main(String[] args) {
List<String> strings = Arrays.asList("byte", "short", "int", "long", "float", "double", "char"); List<String> strings = Arrays.asList("byte", "short", "int", "long", "float", "double", "char");
for(String t1 : strings) for (String t1 : strings) {
for (String t2 : strings) { for (String t2 : strings) {
String resType; String resType;
if (t1.equals("double") || t2.equals("double")) { if (t1.equals("double") || t2.equals("double")) {
@@ -725,3 +726,4 @@ public class Ranges {
} }
} }
} }
}