Skip to content

Commit

Permalink
Use Java naming conventions for parameter names
Browse files Browse the repository at this point in the history
Part of apache#435 and Bugzilla Id: 62972


git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1847969 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
FSchumacher committed Dec 2, 2018
1 parent b1c9cf0 commit 23d608a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/org/apache/jmeter/util/BeanShellInterpreter.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ public BeanShellInterpreter() throws ClassNotFoundException {
/**
*
* @param init initialisation file
* @param _log logger to pass to interpreter
* @param log logger to pass to interpreter
* @throws ClassNotFoundException when beanshell can not be instantiated
*/
public BeanShellInterpreter(String init, Logger _log) throws ClassNotFoundException {
public BeanShellInterpreter(String init, Logger log) throws ClassNotFoundException {
initFile = init;
logger = _log;
logger = log;
init();
}

Expand Down

0 comments on commit 23d608a

Please sign in to comment.