--- old/src/java.base/unix/classes/sun/nio/fs/DefaultFileSystemProvider.java 2016-04-21 08:39:17.397274772 -0700 +++ new/src/java.base/unix/classes/sun/nio/fs/DefaultFileSystemProvider.java 2016-04-21 08:39:17.237354771 -0700 @@ -44,7 +44,9 @@ throw new AssertionError(x); } try { - return c.newInstance(); + @SuppressWarnings("deprecation") + FileSystemProvider result = c.newInstance(); + return result; } catch (IllegalAccessException | InstantiationException x) { throw new AssertionError(x); }