Formatted LispInterpreterBuilderImpl
This commit is contained in:
parent
993df541aa
commit
65069561b8
|
@ -6,9 +6,9 @@ import environment.RuntimeEnvironment;
|
||||||
import error.*;
|
import error.*;
|
||||||
|
|
||||||
public class LispInterpreterBuilderImpl implements LispInterpreterBuilder {
|
public class LispInterpreterBuilderImpl implements LispInterpreterBuilder {
|
||||||
|
|
||||||
private static LispInterpreterBuilder uniqueInstance = new LispInterpreterBuilderImpl();
|
private static LispInterpreterBuilder uniqueInstance = new LispInterpreterBuilderImpl();
|
||||||
|
|
||||||
public static LispInterpreterBuilder getInstance() {
|
public static LispInterpreterBuilder getInstance() {
|
||||||
return uniqueInstance;
|
return uniqueInstance;
|
||||||
}
|
}
|
||||||
|
@ -88,7 +88,7 @@ public class LispInterpreterBuilderImpl implements LispInterpreterBuilder {
|
||||||
public class InterpreterAlreadyBuiltException extends LispException {
|
public class InterpreterAlreadyBuiltException extends LispException {
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getSeverity() {
|
public int getSeverity() {
|
||||||
return ErrorManager.CRITICAL_LEVEL;
|
return ErrorManager.CRITICAL_LEVEL;
|
||||||
|
|
Loading…
Reference in New Issue