changeset 13261:89e2889d02d2 jdk8u191-b03

8207336: Build failure in JDK8u on Windows after fix 8207260 Reviewed-by: prr
author kaddepalli
date Mon, 16 Jul 2018 13:10:17 -0700
parents 01f28bd2ca51
children 94e4769c6d69
files src/windows/classes/sun/awt/shell/Win32ShellFolder2.java
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/windows/classes/sun/awt/shell/Win32ShellFolder2.java	Thu Jul 12 14:13:45 2018 +0530
+++ b/src/windows/classes/sun/awt/shell/Win32ShellFolder2.java	Mon Jul 16 13:10:17 2018 -0700
@@ -731,9 +731,10 @@
                         ? new File[0]
                         : list.toArray(new ShellFolder[list.size()]);
                 }
+            }, InterruptedException.class);
 
-                return Win32ShellFolderManager2.checkFiles(files);
-            }, InterruptedException.class);
+            return Win32ShellFolderManager2.checkFiles(files);
+
         } catch (InterruptedException e) {
             return new File[0];
         }