Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

81437: Fixing a little bug identified by findbugs. An exception was created and dropped without being thrown.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@83164 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Erik Winlof
2014-09-04 06:18:34 +00:00
parent d31a4f0ac1
commit e71d0e65f8

View File

@@ -431,7 +431,7 @@ public class SolrFacetHelper
} }
catch (ExecutionException e) catch (ExecutionException e)
{ {
new IllegalStateException(e); throw new IllegalStateException(e);
} }
} }
} }