Removed an unused method. Closes #4708, no review.

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@25123 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
extempore 2011-06-21 04:28:48 +00:00
parent a5c79ca226
commit 7de44fab17
1 changed files with 1 additions and 5 deletions

View File

@ -211,11 +211,7 @@ class Path private[io] (val jfile: JFile) {
def isDirectory = jfile.isDirectory()
def isAbsolute = jfile.isAbsolute()
def isHidden = jfile.isHidden()
def isSymlink = {
val x = parent / name
x.toCanonical != x.toAbsolute
}
def isEmpty = path.length == 0
def isEmpty = path.length == 0
// Information
def lastModified = jfile.lastModified()