Browse Source

- removed private method that wasn't ever called

- changed date

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@371235 13f79535-47bb-0310-9956-ffa450edef68
master
Kevin Jackson 19 years ago
parent
commit
48a79031a6
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      src/main/org/apache/tools/ant/types/FilterSet.java

+ 1
- 7
src/main/org/apache/tools/ant/types/FilterSet.java View File

@@ -1,5 +1,5 @@
/* /*
* Copyright 2001-2005 The Apache Software Foundation
* Copyright 2001-2006 The Apache Software Foundation
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@@ -585,12 +585,6 @@ public class FilterSet extends DataType implements Cloneable {
return value; return value;
} }


private void addFiltersFile(File f) {
if (!filtersFiles.contains(f)) {
filtersFiles.add(f);
}
}

private void handleMissingFile(String message) { private void handleMissingFile(String message) {
switch (onMissingFiltersFile.getIndex()) { switch (onMissingFiltersFile.getIndex()) {
case OnMissing.IGNORE_INDEX: case OnMissing.IGNORE_INDEX:


Loading…
Cancel
Save