Minor: Update kapt tests for Kotlin 1.1
This commit is contained in:
@@ -5,7 +5,7 @@ public final class Test {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
private final class FilterValueDelegate<T extends java.lang.Object> {
|
final class FilterValueDelegate<T extends java.lang.Object> {
|
||||||
|
|
||||||
public FilterValueDelegate() {
|
public FilterValueDelegate() {
|
||||||
super();
|
super();
|
||||||
@@ -48,7 +48,7 @@ public final class Test3 {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final class FilterValueDelegate<T extends java.lang.Object> {
|
static final class FilterValueDelegate<T extends java.lang.Object> {
|
||||||
|
|
||||||
public FilterValueDelegate() {
|
public FilterValueDelegate() {
|
||||||
super();
|
super();
|
||||||
|
|||||||
+2
-2
@@ -11,7 +11,7 @@ public final class Outer {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
private final class Inner {
|
final class Inner {
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final java.lang.String foo = null;
|
private final java.lang.String foo = null;
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
@@ -34,7 +34,7 @@ public final class Outer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final class Nested {
|
static final class Nested {
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final java.lang.String foo = null;
|
private final java.lang.String foo = null;
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
|||||||
+2
-2
@@ -113,10 +113,10 @@ public class PublicClassProtectedConstructor {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static abstract interface ProtectedInterface {
|
public static abstract interface ProtectedInterface {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static abstract interface PrivateInterface {
|
static abstract interface PrivateInterface {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user