Revert "Sort class members to ensure deterministic builds"

This reverts commit 4bf63a9539.
This commit is contained in:
Ivan Gavrilovic
2021-01-08 19:48:07 +00:00
committed by Yan Zhulanow
parent 77f8c1e58f
commit a320152a03
70 changed files with 1279 additions and 1382 deletions
+10 -10
View File
@@ -6,16 +6,16 @@ public final class Foo {
private final Foo.Bar bar = null;
private final java.lang.String string = null;
public Foo(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@org.jetbrains.annotations.NotNull()
public final Foo.Bar getBar() {
return null;
}
public Foo(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@kotlin.Metadata()
public static final class Bar {
@org.jetbrains.annotations.NotNull()
@@ -23,11 +23,6 @@ public final class Foo {
@org.jetbrains.annotations.NotNull()
private final java.lang.String string = null;
public Bar(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@org.jetbrains.annotations.NotNull()
public final java.util.ArrayList<Foo.Bar.Bar> getBars() {
return null;
@@ -37,5 +32,10 @@ public final class Foo {
public final java.lang.String getString() {
return null;
}
public Bar(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
}
}