jdk/test/java/nio/file/Files/PassThroughFileSystem.java
changeset 9025 a72fc1fc4b71
parent 8158 77d9c0f1c19f
child 9050 26c2c1de1631
--- a/jdk/test/java/nio/file/Files/PassThroughFileSystem.java	Thu Mar 31 22:07:32 2011 -0700
+++ b/jdk/test/java/nio/file/Files/PassThroughFileSystem.java	Mon Apr 04 18:09:53 2011 +0100
@@ -486,8 +486,8 @@
         }
 
         @Override
-        public Path toRealPath(boolean resolveLinks) throws IOException {
-            return wrap(delegate.toRealPath(resolveLinks));
+        public Path toRealPath(LinkOption... options) throws IOException {
+            return wrap(delegate.toRealPath(options));
         }
 
         @Override