Formatting code, removed TODO and imports.

This commit is contained in:
Maschell 2017-03-27 20:40:44 +02:00
parent e7fc629bec
commit 72fd042a3a
3 changed files with 13 additions and 20 deletions

View File

@ -80,7 +80,6 @@ public class GuiInputControls extends JPanel implements ActionListener {
statusLabel = new JLabel("Ready.");
statusLabel.setAlignmentX(Component.CENTER_ALIGNMENT);
cbautoActivateController = new JCheckBox();
cbautoActivateController.setSelected(Settings.AUTO_ACTIVATE_CONTROLLER);
cbautoActivateController.addActionListener(new ActionListener() {

View File

@ -26,17 +26,11 @@ import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
import lombok.Getter;
import lombok.Setter;
import lombok.extern.java.Log;
import net.ash.HIDToVPADNetworkClient.controller.Controller.ControllerType;
import net.ash.HIDToVPADNetworkClient.util.Settings.Platform;
//TODO autosave IP addr
@Log
public class Settings {