Browse Source

checkstyle changes

Obtained from: Kevin Jackson


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277070 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 20 years ago
parent
commit
395f3939fc
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/util/FileUtils.java

+ 2
- 2
src/main/org/apache/tools/ant/util/FileUtils.java View File

@@ -30,10 +30,8 @@ import java.io.InputStream;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import java.io.OutputStreamWriter; import java.io.OutputStreamWriter;
import java.io.Reader; import java.io.Reader;
import java.io.PrintWriter;
import java.io.Writer; import java.io.Writer;
import java.io.OutputStream; import java.io.OutputStream;
import java.lang.reflect.Method;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.net.URL; import java.net.URL;
import java.text.CharacterIterator; import java.text.CharacterIterator;
@@ -1121,6 +1119,7 @@ public class FileUtils {
* *
* @param f the file to be created * @param f the file to be created
* @return true if the file did not exist already. * @return true if the file did not exist already.
* @throws IOException on error
* @since Ant 1.5 * @since Ant 1.5
*/ */
public boolean createNewFile(File f) throws IOException { public boolean createNewFile(File f) throws IOException {
@@ -1138,6 +1137,7 @@ public class FileUtils {
* @param name the name of the file to test. * @param name the name of the file to test.
* *
* @return true if the file is a symbolic link. * @return true if the file is a symbolic link.
* @throws IOException on error
* @since Ant 1.5 * @since Ant 1.5
*/ */
public boolean isSymbolicLink(File parent, String name) public boolean isSymbolicLink(File parent, String name)


Loading…
Cancel
Save