6933914: fix missing newlines

Reviewed-by: ohair
This commit is contained in:
Jonathan Gibbons 2010-03-10 16:23:18 -08:00
parent aa0b8a3b12
commit 2ed0d63583
20 changed files with 19 additions and 19 deletions

View file

@ -41,4 +41,4 @@ class T6738538a {
public T m(); public T m();
} }
class Crash<T extends C<?> & I> {} class Crash<T extends C<?> & I> {}
} }

View file

@ -44,4 +44,4 @@ class T6738538b {
} }
class C2<T extends C1<?> & I2> {} class C2<T extends C1<?> & I2> {}
} }

View file

@ -1,4 +1,4 @@
class A { class A {
boolean b; boolean b;
boolean b; boolean b;
} }

View file

@ -106,4 +106,4 @@ public class T6731573 extends ToolTester {
public static void main(String... args) throws Exception { public static void main(String... args) throws Exception {
new T6731573().test(); new T6731573().test();
} }
} }

View file

@ -37,4 +37,4 @@ public class T6548436d {
static void test(Base<? extends Double> je) { static void test(Base<? extends Double> je) {
Object o = (Base<Integer>)je; Object o = (Base<Integer>)je;
} }
} }

View file

@ -37,4 +37,4 @@ class T6558559a {
A<?> x = null; A<?> x = null;
B<?> y = (B<?>)x; B<?> y = (B<?>)x;
} }

View file

@ -40,4 +40,4 @@ class T6558559b {
Object o = unboundList; Object o = unboundList;
Throwable t3 = (Throwable) o; Throwable t3 = (Throwable) o;
} }
} }

View file

@ -35,4 +35,4 @@ class T6586091 {
A<A<?>> t = null; A<A<?>> t = null;
B c = (B)t; B c = (B)t;
} }

View file

@ -48,4 +48,4 @@ class T6724345 {
enum E implements I { enum E implements I {
V {public void i() {}}; V {public void i() {}};
} }
} }

View file

@ -33,4 +33,4 @@
class T6557954<T> { class T6557954<T> {
class Foo<U extends T> {} class Foo<U extends T> {}
T6557954<Number>.Foo<Integer> f; T6557954<Number>.Foo<Integer> f;
} }

View file

@ -79,4 +79,4 @@ public class T6751514 {
" - found: " + found + ")"); " - found: " + found + ")");
} }
} }
} }

View file

@ -64,4 +64,4 @@ public class T6869075 {
" - found: " + found + ")"); " - found: " + found + ")");
} }
} }
} }

View file

@ -41,4 +41,4 @@ public class T6569789 {
} }
static <W extends C & I & I1 & I2, T extends W> void testMethod(T t) {} static <W extends C & I & I1 & I2, T extends W> void testMethod(T t) {}
} }

View file

@ -42,4 +42,4 @@ class T6650759a {
Integer test = getGenericValue(new IntegerInterface()); Integer test = getGenericValue(new IntegerInterface());
testSet(getGenericValue(new IntegerInterface())); testSet(getGenericValue(new IntegerInterface()));
} }
} }

View file

@ -34,4 +34,4 @@ class T6732484 {
class B extends A<B> {} class B extends A<B> {}
A<? super B> f; A<? super B> f;
} }

View file

@ -26,4 +26,4 @@
* Dummy type to compile. * Dummy type to compile.
*/ */
public class Foo { public class Foo {
} }

View file

@ -36,4 +36,4 @@ public class T6746184 {
class A { class A {
public static void m(final Object... varargs) {} public static void m(final Object... varargs) {}
private static void m(final Object singleArg) {} private static void m(final Object singleArg) {}
} }

View file

@ -71,4 +71,4 @@ public class T6715251 {
String log; String log;
int errors; int errors;
} }

View file

@ -47,4 +47,4 @@ public class T6715753 {
throw new Exception("test failed"); throw new Exception("test failed");
} }
} }
} }