Skip to content

Commit

Permalink
Improved: Don't need to show files names in UI messages (OFBIZ-12884)
Browse files Browse the repository at this point in the history
Not sure how this "this." were still there when they are not in other branches
  • Loading branch information
JacquesLeRoux committed Feb 2, 2024
1 parent 279bb92 commit 55996c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ public String exec(MethodContext methodContext) throws MiniLangException {
methodContext.putEnv(eventResponseName, methodContext.getResponse());
}
methodContext.putEnv("simpleMethod", this);
methodContext.putEnv("methodName", this.getMethodName());
methodContext.putEnv("methodShortDescription", this.getShortDescription());
methodContext.putEnv("methodName", getMethodName());
methodContext.putEnv("methodShortDescription", getShortDescription());
// if using transaction, try to start here
boolean beganTransaction = false;
if (useTransaction) {
Expand Down

0 comments on commit 55996c7

Please sign in to comment.