AllOpen: Make private members open again because of KT-19047

This commit is contained in:
Yan Zhulanow
2017-07-17 23:30:59 +03:00
committed by Yan Zhulanow
parent 5ff014f89d
commit 3bb7febeb8
2 changed files with 1 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ class Test {
protected @org.jetbrains.annotations.NotNull method getProtectedProp(): java.lang.String
public @org.jetbrains.annotations.NotNull method getPublicProp(): java.lang.String
public method internalMethod$test_module(): void
private final method privateMethod(): void
private method privateMethod(): void
protected method protectedMethod(): void
public method publicMethod(): void
}