Skip to content
Snippets Groups Projects
Commit 8e894dee authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6179 tiny code improvement

parent 3b623cd4
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ enum TrustLevel {
}
private int extractIntValue() {
return Integer.parseInt(value.substring(value.length() - 1, value.length()));
return Integer.parseInt(value.substring(value.length() - 1));
}
public static TrustLevel fromString(String value) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment