Skip to content

Commit

Permalink
rename test
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicPlayerA10 committed Aug 26, 2024
1 parent ea33560 commit f054a3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ protected void registerAll() {
register("Universal Number Transformer", InputType.JAVA_CODE, List.of(UniversalNumberTransformer::new), "TestUniversalNumberTransformer");
register("Inline static fields", InputType.JAVA_CODE, List.of(InlineStaticFieldTransformer::new), "TestInlineStaticFields");
// TODO: Account for static field modification
register("Inline static fields with modification", InputType.JAVA_CODE, List.of(InlineStaticFieldTransformer::new), "TestInlineStaticFields2");
register("Inline static fields with modification", InputType.JAVA_CODE, List.of(InlineStaticFieldTransformer::new), "TestInlineStaticFieldsWithModification");

// Samples
// TODO: Deobfuscate switches
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import java.io.File;

public class TestInlineStaticFields2 {
public class TestInlineStaticFieldsWithModification {
private static final char SYSTEM_SEPARATOR = File.separatorChar;
private static final char OTHER_SEPARATOR;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import java.io.File;

public class TestInlineStaticFields2 {
public class TestInlineStaticFieldsWithModification {
private static final char SYSTEM_SEPARATOR = File.separatorChar;
private static final char OTHER_SEPARATOR;

Expand Down

0 comments on commit f054a3d

Please sign in to comment.