Skip to content
Snippets Groups Projects
Commit b3e79778 authored by Martin Vogel's avatar Martin Vogel
Browse files

refactor: return value directly (planning#2016)

parent 2c2525c0
1 merge request!394planning#2016: ZBP Client
......@@ -26,12 +26,12 @@ public enum State {
return value;
}
public static State from(Status fitConnectStatus){
public static State from(Status fitConnectStatus) {
throw new IllegalStateException("not yet implemented");
}
@Override
public String toString() {
return String.valueOf(value);
return value;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment