mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-18 01:14:42 -04:00
fixed some checkstyle issues
This commit is contained in:
parent
1199b0b561
commit
c4c1821229
@ -3,6 +3,7 @@ package de.neemann.digital.builder.circuit;
|
||||
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.*;
|
||||
@ -124,7 +125,7 @@ public class CircuitBuilder implements BuilderInterface<CircuitBuilder> {
|
||||
fragments.add(new FragmentExpression(Arrays.asList(frJ, frK), fe));
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
} catch (ExpressionException | FormatterException e) {
|
||||
throw new BuilderException(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ public final class 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user