mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
6933914: fix missing newlines
Reviewed-by: ohair
This commit is contained in:
parent
aa0b8a3b12
commit
2ed0d63583
20 changed files with 19 additions and 19 deletions
|
@ -41,4 +41,4 @@ class T6738538a {
|
||||||
public T m();
|
public T m();
|
||||||
}
|
}
|
||||||
class Crash<T extends C<?> & I> {}
|
class Crash<T extends C<?> & I> {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,4 +44,4 @@ class T6738538b {
|
||||||
}
|
}
|
||||||
|
|
||||||
class C2<T extends C1<?> & I2> {}
|
class C2<T extends C1<?> & I2> {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
class A {
|
class A {
|
||||||
boolean b;
|
boolean b;
|
||||||
boolean b;
|
boolean b;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,4 +37,4 @@ class T6558559a {
|
||||||
|
|
||||||
A<?> x = null;
|
A<?> x = null;
|
||||||
B<?> y = (B<?>)x;
|
B<?> y = (B<?>)x;
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,4 +40,4 @@ class T6558559b {
|
||||||
Object o = unboundList;
|
Object o = unboundList;
|
||||||
Throwable t3 = (Throwable) o;
|
Throwable t3 = (Throwable) o;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,4 +35,4 @@ class T6586091 {
|
||||||
|
|
||||||
A<A<?>> t = null;
|
A<A<?>> t = null;
|
||||||
B c = (B)t;
|
B c = (B)t;
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,4 +48,4 @@ class T6724345 {
|
||||||
enum E implements I {
|
enum E implements I {
|
||||||
V {public void i() {}};
|
V {public void i() {}};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,4 +79,4 @@ public class T6751514 {
|
||||||
" - found: " + found + ")");
|
" - found: " + found + ")");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,4 +64,4 @@ public class T6869075 {
|
||||||
" - found: " + found + ")");
|
" - found: " + found + ")");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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) {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,4 +42,4 @@ class T6650759a {
|
||||||
Integer test = getGenericValue(new IntegerInterface());
|
Integer test = getGenericValue(new IntegerInterface());
|
||||||
testSet(getGenericValue(new IntegerInterface()));
|
testSet(getGenericValue(new IntegerInterface()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,4 +34,4 @@ class T6732484 {
|
||||||
class B extends A<B> {}
|
class B extends A<B> {}
|
||||||
|
|
||||||
A<? super B> f;
|
A<? super B> f;
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,4 +26,4 @@
|
||||||
* Dummy type to compile.
|
* Dummy type to compile.
|
||||||
*/
|
*/
|
||||||
public class Foo {
|
public class Foo {
|
||||||
}
|
}
|
||||||
|
|
|
@ -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) {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,4 +71,4 @@ public class T6715251 {
|
||||||
|
|
||||||
String log;
|
String log;
|
||||||
int errors;
|
int errors;
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,4 +47,4 @@ public class T6715753 {
|
||||||
throw new Exception("test failed");
|
throw new Exception("test failed");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue