Minor: Update kapt tests for Kotlin 1.1

This commit is contained in:
Yan Zhulanow
2017-03-20 21:49:57 +03:00
parent 9d8adc1882
commit f1e303e18d
3 changed files with 6 additions and 6 deletions
@@ -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
View File
@@ -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
View File
@@ -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 {
} }
} }