Revert "Sort class members to ensure deterministic builds"
This reverts commit 4bf63a9539.
This commit is contained in:
committed by
Yan Zhulanow
parent
77f8c1e58f
commit
a320152a03
+5
-5
@@ -26,8 +26,9 @@ public final class User {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String name = "John";
|
||||
|
||||
public User() {
|
||||
super();
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getName() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public User(@org.jetbrains.annotations.NotNull()
|
||||
@@ -35,8 +36,7 @@ public final class User {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getName() {
|
||||
return null;
|
||||
public User() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,14 +25,14 @@ public final class Simple {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final test.Simple.Companion Companion = null;
|
||||
|
||||
public Simple() {
|
||||
super();
|
||||
}
|
||||
|
||||
@MyAnnotation()
|
||||
public final void myMethod() {
|
||||
}
|
||||
|
||||
public Simple() {
|
||||
super();
|
||||
}
|
||||
|
||||
@kotlin.Metadata()
|
||||
public static final class NestedClass {
|
||||
|
||||
|
||||
@@ -28,15 +28,6 @@ public final class State {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String someString = null;
|
||||
|
||||
public State(int someInt, long someLong) {
|
||||
super();
|
||||
}
|
||||
|
||||
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
|
||||
java.lang.String someString) {
|
||||
super();
|
||||
}
|
||||
|
||||
public final int getSomeInt() {
|
||||
return 0;
|
||||
}
|
||||
@@ -49,4 +40,13 @@ public final class State {
|
||||
public final java.lang.String getSomeString() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
|
||||
java.lang.String someString) {
|
||||
super();
|
||||
}
|
||||
|
||||
public State(int someInt, long someLong) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,16 +16,16 @@ import java.lang.System;
|
||||
@kotlin.Metadata()
|
||||
public final class Simple {
|
||||
|
||||
public Simple() {
|
||||
super();
|
||||
@MyAnnotation()
|
||||
public final void myMethod() {
|
||||
}
|
||||
|
||||
public final int heavyMethod() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@MyAnnotation()
|
||||
public final void myMethod() {
|
||||
public Simple() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user