Browse Source

final declaration is moot for a static

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277009 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 21 years ago
parent
commit
87ce22c5e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/junit/DOMUtil.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/junit/DOMUtil.java View File

@@ -149,7 +149,7 @@ public final class DOMUtil {
* appended to <tt>parent</tt>.
* @return the cloned node that is appended to <tt>parent</tt>
*/
public static final Node importNode(Node parent, Node child) {
public static Node importNode(Node parent, Node child) {
Node copy = null;
final Document doc = parent.getOwnerDocument();



Loading…
Cancel
Save