-
Enhancement
-
Resolution: Done
-
Minor
-
None
-
None
The StringBuilder op is created and updated, but never used (see below).
It should be removed, or it should be used if really needed.
CommandContextImpl.java
if (parsedCmd.getFormat() == OperationFormat.INSTANCE) { final ModelNode request = this.parsedCmd.toOperationRequest(this); StringBuilder op = new StringBuilder(); op.append(prefixFormatter.format(parsedCmd.getAddress())); op.append(line.substring(line.indexOf(':'))); return new HandledRequest(request, null); }