Skip to content

Commit b5fa091

Browse files
committed
Change indent string to use tabs
1 parent 341bb8b commit b5fa091

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/org/jetbrains/java/decompiler/main/extern/IFernflowerPreferences.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ static Map<String, Object> getDefaults() {
8585
defaults.put(MAX_PROCESSING_METHOD, "0");
8686
defaults.put(RENAME_ENTITIES, "0");
8787
defaults.put(NEW_LINE_SEPARATOR, (InterpreterUtil.IS_WINDOWS ? "0" : "1"));
88-
defaults.put(INDENT_STRING, " ");
88+
defaults.put(INDENT_STRING, " ");
8989
defaults.put(BANNER, "");
9090
defaults.put(UNIT_TEST_MODE, "0");
9191
defaults.put(DUMP_ORIGINAL_LINES, "0");

test/org/jetbrains/java/decompiler/SingleClassesTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ public class SingleClassesTest {
2222
@Before
2323
public void setUp() throws IOException {
2424
fixture = new DecompilerTestFixture();
25-
fixture.setUp(IFernflowerPreferences.BYTECODE_SOURCE_MAPPING, "1",
25+
fixture.setUp(IFernflowerPreferences.INDENT_STRING, " ",
26+
IFernflowerPreferences.BYTECODE_SOURCE_MAPPING, "1",
2627
IFernflowerPreferences.DUMP_ORIGINAL_LINES, "1",
2728
IFernflowerPreferences.IGNORE_INVALID_BYTECODE, "1",
2829
IFernflowerPreferences.VERIFY_ANONYMOUS_CLASSES, "1");

0 commit comments

Comments
 (0)