--- old/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedCopyOption.java 2018-11-02 08:21:41.000000000 -0700 +++ new/src/jdk.unsupported/share/classes/com/sun/nio/file/ExtendedCopyOption.java 2018-11-02 08:21:40.000000000 -0700 @@ -26,7 +26,7 @@ package com.sun.nio.file; import java.nio.file.CopyOption; -import sun.nio.fs.ExtendedOptions; +import jdk.internal.unsupported.FileSystemOption; /** * Defines extended copy options supported on some platforms @@ -40,9 +40,9 @@ * The copy may be interrupted by the {@link Thread#interrupt interrupt} * method. */ - INTERRUPTIBLE(ExtendedOptions.INTERRUPTIBLE); + INTERRUPTIBLE(FileSystemOption.INTERRUPTIBLE); - ExtendedCopyOption(ExtendedOptions.InternalOption option) { + ExtendedCopyOption(FileSystemOption option) { option.register(this); } }