Skip to content
Snippets Groups Projects
Commit d429d7ef authored by srosse's avatar srosse
Browse files

no-jira: fix RS

parent 57001d84
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ public class OperatorManager {
public static String[] getRegisteredAndAlreadyTranslatedOperatorLabels(Locale locale, String[] operatorKeys) {
List<String> keys = Arrays.asList(operatorKeys);
Translator t = new PackageTranslator(OperatorManager.class.getPackage().getName(), locale);
String[] tmp = new String[ops.size()];
String[] tmp = new String[operatorKeys.length];
int i = 0;
for (Operator o : ops) {
if(keys.contains(o.getOperatorKey())) {
......
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