Browse Source

Removed unused local variables (after verification for documented side effects)

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277773 13f79535-47bb-0310-9956-ffa450edef68
master
Jacobus Martinus Kruithof 20 years ago
parent
commit
2584f8e894
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/main/org/apache/tools/ant/TaskAdapter.java

+ 1
- 2
src/main/org/apache/tools/ant/TaskAdapter.java View File

@@ -114,9 +114,8 @@ public class TaskAdapter extends Task implements TypeAdapter {
Project.MSG_ERR);
throw new BuildException(ex);
}
Method executeM = null;
try {
Class c = proxy.getClass();
DispatchUtils.execute(proxy);
} catch (Exception ex) {
log("Error in " + proxy.getClass(), Project.MSG_VERBOSE);


Loading…
Cancel
Save