diff --git a/core/src/main/java/hudson/Util.java b/core/src/main/java/hudson/Util.java index 28076edfdc9df656ce4cdb000fe6c4d8df65bb14..101f9544c641e1b45626bbf7f2ac301cdf554c84 100644 --- a/core/src/main/java/hudson/Util.java +++ b/core/src/main/java/hudson/Util.java @@ -167,7 +167,7 @@ public class Util { * Checks if the given file represents a symlink. */ //Taken from http://svn.apache.org/viewvc/maven/shared/trunk/file-management/src/main/java/org/apache/maven/shared/model/fileset/util/FileSetManager.java?view=markup - public boolean isSymlink(File file) throws IOException { + public static boolean isSymlink(File file) throws IOException { File parent = file.getParentFile(); File canonicalFile = file.getCanonicalFile();