Skip to content

Commit

Permalink
优化
Browse files Browse the repository at this point in the history
  • Loading branch information
Invinciblelee committed May 20, 2019
1 parent 546fc8d commit 6c16582
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,17 @@ public Map<String, String> putVariableMapInternal(String rule, int flag) {
return resultMap;
}

@Override
public String putVariable(String key, String val) {
getVariableStore().putVariable(key, val);
return val;
}

@Override
public String getVariable(String key) {
return getVariableStore().getVariable(key);
}

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

import java.util.List;

public interface JavaExecutor extends SimpleJavaExecutor {
public interface JavaExecutor extends SimpleJavaExecutor{

String putVariable(String key, String val);

String getVariable(String key);

String parseResultContent(Object source, String rule);

Expand Down
4 changes: 2 additions & 2 deletions app/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Mon May 20 22:59:50 CST 2019
VERSION_CODE=2998
#Mon May 20 23:17:17 CST 2019
VERSION_CODE=2999

0 comments on commit 6c16582

Please sign in to comment.