Skip to content
Snippets Groups Projects
Commit cf8c1c4e authored by brinn's avatar brinn
Browse files

fix: remove bad exception wrapping

SVN: 7074
parent 7e91af9c
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ public final class CallableExecutor ...@@ -50,7 +50,7 @@ public final class CallableExecutor
* Executes given <var>callable</var> until it returns a non-<code>null</code> value (or * Executes given <var>callable</var> until it returns a non-<code>null</code> value (or
* until <code>maxRetryOnFailure</code> is reached). * until <code>maxRetryOnFailure</code> is reached).
*/ */
public final <T> T executeCallable(final Callable<T> callable) public final <T> T executeCallable(final Callable<T> callable) throws StopException
{ {
int counter = 0; int counter = 0;
T result = null; T result = null;
...@@ -62,13 +62,7 @@ public final class CallableExecutor ...@@ -62,13 +62,7 @@ public final class CallableExecutor
result = callable.call(); result = callable.call();
if (counter > 0 && millisToSleepOnFailure > 0) if (counter > 0 && millisToSleepOnFailure > 0)
{ {
try Thread.sleep(millisToSleepOnFailure);
{
Thread.sleep(millisToSleepOnFailure);
} catch (final InterruptedException ex)
{
throw new CheckedExceptionTunnel(ex);
}
} }
} while (counter++ < maxRetryOnFailure && result == null); } while (counter++ < maxRetryOnFailure && result == null);
} catch (final Exception ex) } catch (final Exception ex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment