Fix Reinterpret missing documentation
This commit is contained in:
parent
e1cb38bb29
commit
f7cece6103
@ -66,7 +66,7 @@ public class Reinterpret implements Function {
|
||||
return reinterpret(str, decoder, encoder);
|
||||
}
|
||||
}
|
||||
return new EvalError(ControlFunctionRegistry.getFunctionName(this) + " expects 2 or 3 arguments");
|
||||
return new EvalError(ControlFunctionRegistry.getFunctionName(this) + " expects String to reinterpret with a given target encoder and optional source decoder");
|
||||
}
|
||||
|
||||
private Object reinterpret(String str, String decoder, String encoder) {
|
||||
@ -89,7 +89,7 @@ public class Reinterpret implements Function {
|
||||
result = new String(bytes, encoder);
|
||||
}
|
||||
} catch (UnsupportedEncodingException e) {
|
||||
return new EvalError(ControlFunctionRegistry.getFunctionName(this) + ": encoding '" + encoder + "' is not available or recognized.");
|
||||
return new EvalError(ControlFunctionRegistry.getFunctionName(this) + ": target encoding '" + encoder + "' is not available or recognized.");
|
||||
}
|
||||
|
||||
return result;
|
||||
@ -97,12 +97,12 @@ public class Reinterpret implements Function {
|
||||
|
||||
@Override
|
||||
public String getDescription() {
|
||||
return "Returns s reinterpreted thru the given encoder.";
|
||||
return "Returns s reinterpreted thru the given target encoder and optional source decoder.";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getParams() {
|
||||
return "string s, string encoder";
|
||||
return "string s, string target encoder, string source decoder";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user