Navigation Menu

Skip to content

Commit

Permalink
Minor comment reformat (to restart Travis CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
geowar1 committed Aug 13, 2018
1 parent c10538b commit 0c85d3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/src/jmri/jmrit/beantable/BlockTableAction.java
Expand Up @@ -1016,7 +1016,7 @@ void okPressed(ActionEvent e) {
// Find first block with unused system name // Find first block with unused system name
while (true) { while (true) {
system = nextName(system); system = nextName(system);
// log.warn("Trying " + system); //log.warn("Trying " + system);
Block blk = InstanceManager.getDefault(jmri.BlockManager.class).getByUserName(system); Block blk = InstanceManager.getDefault(jmri.BlockManager.class).getByUserName(system);
if (blk == null) { if (blk == null) {
sName = system; sName = system;
Expand All @@ -1028,7 +1028,7 @@ void okPressed(ActionEvent e) {
// Find first block with unused user name // Find first block with unused user name
while (true) { while (true) {
user = nextName(user); user = nextName(user);
// log.warn("Trying " + user); //log.warn("Trying " + user);
Block blk = InstanceManager.getDefault(jmri.BlockManager.class).getByUserName(user); Block blk = InstanceManager.getDefault(jmri.BlockManager.class).getByUserName(user);
if (blk == null) { if (blk == null) {
uName = user; uName = user;
Expand Down

0 comments on commit 0c85d3a

Please sign in to comment.