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
+12 -12
View File
@@ -14,15 +14,15 @@ public abstract interface FooComponent {
@kotlin.Metadata()
public static final class Companion {
private Companion() {
super();
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String create(@org.jetbrains.annotations.NotNull()
java.lang.String context) {
return null;
}
private Companion() {
super();
}
}
}
@@ -33,13 +33,13 @@ import java.lang.System;
@kotlin.Metadata()
public final class JvmStaticTest {
@org.jetbrains.annotations.NotNull()
public static final JvmStaticTest.Companion Companion = null;
public static final char c = 'C';
public final byte three = (byte)3;
public final char d = 'D';
private static final int one = 1;
public final byte three = (byte)3;
public static final int two = 2;
public static final char c = 'C';
@org.jetbrains.annotations.NotNull()
public static final JvmStaticTest.Companion Companion = null;
public JvmStaticTest() {
super();
@@ -52,16 +52,16 @@ public final class JvmStaticTest {
@kotlin.Metadata()
public static final class Companion {
private Companion() {
super();
@java.lang.Deprecated()
public static void getOne$annotations() {
}
public final int getOne() {
return 0;
}
@java.lang.Deprecated()
public static void getOne$annotations() {
private Companion() {
super();
}
}
}