@@ -285,7 +285,7 @@ public void setTargetContainer(String targetContainer)
285285 public class SetTableIncrementValueAction extends SimpleRedirectAction <Object >
286286 {
287287 @ Override
288- public URLHelper getRedirectURL (Object o ) throws Exception
288+ public ActionURL getRedirectURL (Object o )
289289 {
290290 return DetailsURL .fromString ("laboratory/setTableIncrementValue.view" , getContainer ()).getActionURL ();
291291 }
@@ -297,7 +297,7 @@ public URLHelper getRedirectURL(Object o) throws Exception
297297 public class ManageFileRootAction extends SimpleRedirectAction <Object >
298298 {
299299 @ Override
300- public URLHelper getRedirectURL (Object o ) throws Exception
300+ public ActionURL getRedirectURL (Object o )
301301 {
302302 return DetailsURL .fromString ("admin/manageFileRoot.view" , getContainer ()).getActionURL ();
303303 }
@@ -308,15 +308,15 @@ public URLHelper getRedirectURL(Object o) throws Exception
308308 public static class AddCustomIndexesAction extends ConfirmAction <Object >
309309 {
310310 @ Override
311- public ModelAndView getConfirmView (Object o , BindException errors ) throws Exception
311+ public ModelAndView getConfirmView (Object o , BindException errors )
312312 {
313313 setTitle ("Add Custom Core.Container Indexes" );
314314
315315 return HtmlView .of ("This action will add custom indexes to core.contains. Only do this if you are absolutely certain about the consequences. Do you want to continue?" );
316316 }
317317
318318 @ Override
319- public boolean handlePost (Object o , BindException errors ) throws Exception
319+ public boolean handlePost (Object o , BindException errors )
320320 {
321321 return DiscvrCoreManager .get ().addCoreContainersIndexes ();
322322 }
0 commit comments