Skip to content

Commit

Permalink
fixed some checkstyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hneemann committed Aug 9, 2016
1 parent 1199b0b commit c4c1821
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import de.neemann.digital.analyse.DetermineJKStateMachine;
import de.neemann.digital.analyse.expression.*;
import de.neemann.digital.analyse.expression.Not;
import de.neemann.digital.analyse.expression.format.FormatterException;
import de.neemann.digital.builder.BuilderException;
import de.neemann.digital.builder.BuilderInterface;
import de.neemann.digital.core.basic.*;
Expand Down Expand Up @@ -124,7 +125,7 @@ public CircuitBuilder addSequential(String name, Expression expression) throws B
fragments.add(new FragmentExpression(Arrays.asList(frJ, frK), fe));
}
}
} catch (Exception e) {
} catch (ExpressionException | FormatterException e) {
throw new BuilderException(e.getMessage());
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/neemann/digital/core/element/Keys.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private Keys() {
*/
public static final Key.KeyInteger SIZE
= new Key.KeyInteger("Size", 1)
.setComboBoxValues(new Integer[]{1,2, 3, 4, 5})
.setComboBoxValues(new Integer[]{1, 2, 3, 4, 5})
.setMin(1);
/**
* The value of constants
Expand Down

0 comments on commit c4c1821

Please sign in to comment.