Skip to content

Commit

Permalink
ui: whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 27, 2017
1 parent 7186b8c commit 3bc0ab1
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 20 deletions.
8 changes: 4 additions & 4 deletions ui/src/main/java/jme3utilities/ui/ActionAppState.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public class ActionAppState extends SimpleAppState {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
ActionAppState.class.getName());
final private static Logger logger
= Logger.getLogger(ActionAppState.class.getName());
// *************************************************************************
// fields

Expand All @@ -59,10 +59,10 @@ public class ActionAppState extends SimpleAppState {
protected Signals signals = null;
// *************************************************************************
// constructor

/**
* Instantiate an uninitialized state.
*
*
* @param enabled true → enabled, false → disabled
*/
public ActionAppState(boolean enabled) {
Expand Down
4 changes: 2 additions & 2 deletions ui/src/main/java/jme3utilities/ui/ActionApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ abstract public class ActionApplication
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
ActionApplication.class.getName());
final private static Logger logger
= Logger.getLogger(ActionApplication.class.getName());
/**
* names of flyCam actions and the signals used to simulate them
*/
Expand Down
4 changes: 2 additions & 2 deletions ui/src/main/java/jme3utilities/ui/DefaultInputMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class DefaultInputMode extends InputMode {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
DefaultInputMode.class.getName());
final private static Logger logger
= Logger.getLogger(DefaultInputMode.class.getName());
/**
* asset path to the cursor for this mode
*/
Expand Down
4 changes: 2 additions & 2 deletions ui/src/main/java/jme3utilities/ui/Hotkey.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public class Hotkey {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
Hotkey.class.getName());
final private static Logger logger
= Logger.getLogger(Hotkey.class.getName());
// *************************************************************************
// fields

Expand Down
9 changes: 5 additions & 4 deletions ui/src/main/java/jme3utilities/ui/Locators.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public class Locators {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
Locators.class.getName());
final private static Logger logger
= Logger.getLogger(Locators.class.getName());
// *************************************************************************
// fields

Expand All @@ -66,7 +66,8 @@ public class Locators {
* list of locator types (1st element is tried first, parallel with
* {@link #rootPaths})
*/
final private List<Class<? extends AssetLocator>> locatorTypes = new ArrayList<>(6);
final private List<Class<? extends AssetLocator>> locatorTypes
= new ArrayList<>(6);
/**
* stack of configurations for save/restore (the last element is the current
* configuration)
Expand Down Expand Up @@ -140,7 +141,7 @@ public static void register(String rootPath,
*/
public static void register(List<String> specList) {
Validate.nonNull(specList, "spec list");

for (String specifier : specList) {
register(specifier);
}
Expand Down
4 changes: 2 additions & 2 deletions ui/src/main/java/jme3utilities/ui/PropertiesLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public class PropertiesLoader implements AssetLoader {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
PropertiesLoader.class.getName());
final private static Logger logger
= Logger.getLogger(PropertiesLoader.class.getName());
// *************************************************************************
// AssetLoader methods

Expand Down
4 changes: 2 additions & 2 deletions ui/src/main/java/jme3utilities/ui/Signals.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public class Signals implements ActionListener {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
Signals.class.getName());
final private static Logger logger
= Logger.getLogger(Signals.class.getName());
// *************************************************************************
// fields

Expand Down
4 changes: 2 additions & 2 deletions ui/src/main/java/jme3utilities/ui/UiVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public class UiVersion {
/**
* message logger for this class
*/
final private static Logger logger = Logger.getLogger(
UiVersion.class.getName());
final private static Logger logger
= Logger.getLogger(UiVersion.class.getName());
// *************************************************************************
// constructors

Expand Down

0 comments on commit 3bc0ab1

Please sign in to comment.