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
+100
-100
@@ -16,36 +16,116 @@ import java.lang.System;
|
||||
|
||||
@kotlin.Metadata()
|
||||
public final class Foo {
|
||||
private final boolean z = false;
|
||||
private final byte b = 0;
|
||||
private final char c = '\u0000';
|
||||
private final char c2 = '\u0000';
|
||||
private final short sh = 0;
|
||||
private final int i = 0;
|
||||
private final long l = 0L;
|
||||
private final float f = 0.0F;
|
||||
private final double d = 0.0;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String s = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final int[] iarr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final long[] larr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final double[] darr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String[] sarr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.Class<?> cl = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.Class<?>[] clarr = null;
|
||||
private final double d = 0.0;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final double[] darr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final Em em = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final Em[] emarr = null;
|
||||
private final float f = 0.0F;
|
||||
private final int i = 0;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final int[] iarr = null;
|
||||
private final long l = 0L;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final long[] larr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String s = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String[] sarr = null;
|
||||
private final short sh = 0;
|
||||
private final boolean z = false;
|
||||
|
||||
public Foo() {
|
||||
super();
|
||||
public final void foo(int a) {
|
||||
}
|
||||
|
||||
public final boolean getZ() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public final byte getB() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public final char getC() {
|
||||
return '\u0000';
|
||||
}
|
||||
|
||||
public final char getC2() {
|
||||
return '\u0000';
|
||||
}
|
||||
|
||||
public final short getSh() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public final int getI() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public final long getL() {
|
||||
return 0L;
|
||||
}
|
||||
|
||||
public final float getF() {
|
||||
return 0.0F;
|
||||
}
|
||||
|
||||
public final double getD() {
|
||||
return 0.0;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getS() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final int[] getIarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final long[] getLarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final double[] getDarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String[] getSarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.Class<?> getCl() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.Class<?>[] getClarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final Em getEm() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final Em[] getEmarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public Foo(boolean z, byte b, char c, char c2, short sh, int i, long l, float f, double d, @org.jetbrains.annotations.NotNull()
|
||||
@@ -61,87 +141,7 @@ public final class Foo {
|
||||
super();
|
||||
}
|
||||
|
||||
public final void foo(int a) {
|
||||
}
|
||||
|
||||
public final byte getB() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public final char getC() {
|
||||
return '\u0000';
|
||||
}
|
||||
|
||||
public final char getC2() {
|
||||
return '\u0000';
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.Class<?> getCl() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.Class<?>[] getClarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public final double getD() {
|
||||
return 0.0;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final double[] getDarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final Em getEm() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final Em[] getEmarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public final float getF() {
|
||||
return 0.0F;
|
||||
}
|
||||
|
||||
public final int getI() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final int[] getIarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public final long getL() {
|
||||
return 0L;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final long[] getLarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String getS() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String[] getSarr() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public final short getSh() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public final boolean getZ() {
|
||||
return false;
|
||||
public Foo() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user