Remove unused local variable (#2807)
Signed-off-by: Wouter Born <github@maindrain.net>pull/2786/head
parent
f79d85da87
commit
738149d44b
|
@ -142,7 +142,6 @@ public abstract class AbstractScriptModuleHandler<T extends Module> extends Base
|
||||||
ScriptContext executionContext = engine.getContext();
|
ScriptContext executionContext = engine.getContext();
|
||||||
|
|
||||||
for (Entry<String, ?> entry : context.entrySet()) {
|
for (Entry<String, ?> entry : context.entrySet()) {
|
||||||
Object value = entry.getValue();
|
|
||||||
String key = entry.getKey();
|
String key = entry.getKey();
|
||||||
int dotIndex = key.indexOf('.');
|
int dotIndex = key.indexOf('.');
|
||||||
if (dotIndex != -1) {
|
if (dotIndex != -1) {
|
||||||
|
|
Loading…
Reference in New Issue