Use tabs for indentation in the Fernflower decompiler (#383)

Co-authored-by: modmuss50 <modmuss50@gmail.com>
This commit is contained in:
haykam821 2021-06-13 09:34:46 -04:00 committed by GitHub
parent 9278f6c4b9
commit 60482833b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,6 +71,7 @@ public abstract class AbstractFernFlowerDecompiler implements LoomDecompiler {
put(IFernflowerPreferences.REMOVE_SYNTHETIC, "1"); put(IFernflowerPreferences.REMOVE_SYNTHETIC, "1");
put(IFernflowerPreferences.LOG_LEVEL, "trace"); put(IFernflowerPreferences.LOG_LEVEL, "trace");
put(IFernflowerPreferences.THREADS, metaData.numberOfThreads()); put(IFernflowerPreferences.THREADS, metaData.numberOfThreads());
put(IFernflowerPreferences.INDENT_STRING, "\t");
}}; }};
List<String> args = new ArrayList<>(); List<String> args = new ArrayList<>();