Skip to content

Commit

Permalink
fixed getDecompilerType
Browse files Browse the repository at this point in the history
  • Loading branch information
jpstotz authored and nbauma109 committed Mar 30, 2024
1 parent 7ebd3ae commit cd27a04
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
import org.jetbrains.java.decompiler.main.extern.IFernflowerLogger;
import org.jetbrains.java.decompiler.main.extern.IFernflowerPreferences;
import org.sf.feeling.decompiler.JavaDecompilerPlugin;
import org.sf.feeling.decompiler.editor.DecompilerType;
import org.sf.feeling.decompiler.editor.IDecompiler;
import org.sf.feeling.decompiler.util.ClassUtil;
import org.sf.feeling.decompiler.util.FileUtil;
import org.sf.feeling.decompiler.util.JarClassExtractor;
import org.sf.feeling.decompiler.util.UnicodeUtil;
import org.sf.feeling.decompiler.vineflower.VineflowerDecompilerPlugin;

public class VineflowerDecompiler implements IDecompiler {

Expand Down Expand Up @@ -204,7 +204,7 @@ public String getSource() {

@Override
public String getDecompilerType() {
return DecompilerType.FernFlower;
return VineflowerDecompilerPlugin.decompilerType;
}

@Override
Expand Down

0 comments on commit cd27a04

Please sign in to comment.