--- old/src/java.base/unix/classes/sun/nio/fs/DefaultFileSystemProvider.java 2016-04-27 14:30:40.809154732 -0700 +++ new/src/java.base/unix/classes/sun/nio/fs/DefaultFileSystemProvider.java 2016-04-27 14:30:40.649154727 -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); }