Fix Code Style No3
It's fucking 1AM again...
This commit is contained in:
parent
f528437b74
commit
04dff7226e
4 changed files with 2 additions and 7 deletions
|
@ -1,8 +1,6 @@
|
||||||
package the.bytecode.club.bytecodeviewer.gui;
|
package the.bytecode.club.bytecodeviewer.gui;
|
||||||
|
|
||||||
import java.awt.Dimension;
|
import java.awt.Dimension;
|
||||||
import java.awt.event.ActionEvent;
|
|
||||||
import java.awt.event.ActionListener;
|
|
||||||
import javax.swing.JButton;
|
import javax.swing.JButton;
|
||||||
import javax.swing.JCheckBox;
|
import javax.swing.JCheckBox;
|
||||||
import javax.swing.JFrame;
|
import javax.swing.JFrame;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
package the.bytecode.club.bytecodeviewer.gui;
|
package the.bytecode.club.bytecodeviewer.gui;
|
||||||
|
|
||||||
import java.awt.Dimension;
|
import java.awt.Dimension;
|
||||||
import java.awt.event.ActionEvent;
|
|
||||||
import java.awt.event.ActionListener;
|
|
||||||
import javax.swing.JButton;
|
import javax.swing.JButton;
|
||||||
import javax.swing.JCheckBox;
|
import javax.swing.JCheckBox;
|
||||||
import javax.swing.JFrame;
|
import javax.swing.JFrame;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
package the.bytecode.club.bytecodeviewer.gui;
|
package the.bytecode.club.bytecodeviewer.gui;
|
||||||
|
|
||||||
import java.awt.Dimension;
|
import java.awt.Dimension;
|
||||||
import java.awt.event.ActionEvent;
|
|
||||||
import java.awt.event.ActionListener;
|
|
||||||
import javax.swing.JButton;
|
import javax.swing.JButton;
|
||||||
import javax.swing.JCheckBox;
|
import javax.swing.JCheckBox;
|
||||||
import javax.swing.JFrame;
|
import javax.swing.JFrame;
|
||||||
|
|
|
@ -83,7 +83,8 @@ public class RefactorMapper extends Remapper {
|
||||||
String obfKey = owner + "$$$$" + name + "$$$$" + desc;
|
String obfKey = owner + "$$$$" + name + "$$$$" + desc;
|
||||||
if (sortedFields.containsKey(obfKey)) {
|
if (sortedFields.containsKey(obfKey)) {
|
||||||
String map =
|
String map =
|
||||||
owner + "." + name + " --> " + owner + sortedFields.get(obfKey).getName().getRefactoredName() + "\n";
|
owner + "." + name + " --> " + owner + sortedFields.get(obfKey).getName().getRefactoredName() +
|
||||||
|
"\n";
|
||||||
if (!mappingList.contains(map))
|
if (!mappingList.contains(map))
|
||||||
mappingList.add(map);
|
mappingList.add(map);
|
||||||
name = sortedFields.get(obfKey).getName().getRefactoredName();
|
name = sortedFields.get(obfKey).getName().getRefactoredName();
|
||||||
|
|
Loading…
Reference in a new issue