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
@@ -3,15 +3,15 @@ import java.lang.System;
@kotlin.Metadata()
public abstract class Base {
public Base() {
super();
}
protected abstract void doJob(@org.jetbrains.annotations.NotNull()
java.lang.String job, int delay);
protected abstract <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull()
T job, int delay);
public Base() {
super();
}
}
////////////////////
@@ -22,10 +22,6 @@ import java.lang.System;
@kotlin.Metadata()
public final class Impl extends Base {
public Impl() {
super();
}
@java.lang.Override()
protected void doJob(@org.jetbrains.annotations.NotNull()
java.lang.String job, int delay) {
@@ -35,4 +31,8 @@ public final class Impl extends Base {
protected <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull()
T job, int delay) {
}
public Impl() {
super();
}
}