Browse Source

2002

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272406 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
17279312b5
30 changed files with 33 additions and 31 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Definer.java
  2. +4
    -2
      src/main/org/apache/tools/ant/taskdefs/optional/Native2Ascii.java
  3. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/ejb/WebsphereDeploymentTool.java
  4. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJLoad.java
  5. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/ide/VAJLoadProjects.java
  6. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/jsp/WLJspc.java
  7. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Add.java
  8. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Change.java
  9. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Counter.java
  10. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Edit.java
  11. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Have.java
  12. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Label.java
  13. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Revert.java
  14. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Submit.java
  15. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/P4Sync.java
  16. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/perforce/SimpleP4OutputHandler.java
  17. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/pvcs/PvcsProject.java
  18. +1
    -1
      src/main/org/apache/tools/ant/types/Reference.java
  19. +1
    -1
      src/main/org/apache/tools/ant/types/ZipScanner.java
  20. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/JakartaOroMatcher.java
  21. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/JakartaOroRegexp.java
  22. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/JakartaRegexpMatcher.java
  23. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/JakartaRegexpRegexp.java
  24. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/Jdk14RegexpRegexp.java
  25. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/Regexp.java
  26. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/RegexpMatcher.java
  27. +1
    -1
      src/main/org/apache/tools/ant/util/regexp/RegexpUtil.java
  28. +1
    -1
      src/main/org/apache/tools/mail/SmtpResponseReader.java
  29. +1
    -1
      src/main/org/apache/tools/tar/TarConstants.java
  30. +1
    -1
      src/testcases/org/apache/tools/ant/taskdefs/optional/XslpLiaisonTest.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Definer.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 4
- 2
src/main/org/apache/tools/ant/taskdefs/optional/Native2Ascii.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000,2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -71,6 +71,7 @@ import java.io.File;
*
* @author <a href="asudell@acm.org">Drew Sudell</a>
* @author <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
* @since Ant 1.2
*/
public class Native2Ascii extends MatchingTask {

@@ -258,7 +259,8 @@ public class Native2Ascii extends MatchingTask {
public String[] mapFileName(String fileName) {
int lastDot = fileName.lastIndexOf('.');
if (lastDot >= 0) {
return new String[] {fileName.substring(0, lastDot) + extension};
return new String[] {fileName.substring(0, lastDot)
+ extension};
} else {
return new String[] {fileName + extension};
}


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. All rights
* Copyright (c) 2000,2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


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

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/JakartaOroMatcher.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/JakartaOroRegexp.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/JakartaRegexpMatcher.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/JakartaRegexpRegexp.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/Jdk14RegexpRegexp.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/Regexp.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/RegexpMatcher.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/ant/util/regexp/RegexpUtil.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/mail/SmtpResponseReader.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/main/org/apache/tools/tar/TarConstants.java View File

@@ -1,7 +1,7 @@
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


+ 1
- 1
src/testcases/org/apache/tools/ant/taskdefs/optional/XslpLiaisonTest.java View File

@@ -5,7 +5,7 @@ import org.apache.tools.ant.taskdefs.XSLTLiaison;
/*
* The Apache Software License, Version 1.1
*
* Copyright (c) 2001 The Apache Software Foundation. All rights
* Copyright (c) 2001-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without


Loading…
Cancel
Save