Skip to content

Commit

Permalink
JENKINS-32331 Removed bottleneck synchronisation
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoraboeuf committed Feb 2, 2016
1 parent ccd1478 commit f9054f3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -162,7 +162,7 @@ public boolean required() {
}

@Override
public synchronized String evaluate(AbstractBuild<?, ?> context, TaskListener listener, String macroName, Map<String, String> arguments, ListMultimap<String, String> argumentMultimap) throws MacroEvaluationException, IOException, InterruptedException {
public String evaluate(AbstractBuild<?, ?> context, TaskListener listener, String macroName, Map<String, String> arguments, ListMultimap<String, String> argumentMultimap) throws MacroEvaluationException, IOException, InterruptedException {
try {
DataBoundTokenMacro copy = getClass().newInstance();

Expand Down

0 comments on commit f9054f3

Please sign in to comment.