Skip to content

Commit

Permalink
ninja-fix propagate usage
Browse files Browse the repository at this point in the history
  • Loading branch information
carlyeks committed Feb 3, 2016
1 parent 5f1e4bc commit b9bdd9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/java/org/apache/cassandra/db/Mutation.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public void apply(boolean durableWrites)
}
catch (ExecutionException e)
{
Throwables.propagate(e.getCause());
throw Throwables.propagate(e.getCause());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ public void runMayThrow()
}
catch (ExecutionException e)
{
Throwables.propagate(e.getCause());
throw Throwables.propagate(e.getCause());
}

keyspacesRecovered.add(keyspace);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public static void commit(Commit proposal)
}
catch (ExecutionException e)
{
Throwables.propagate(e.getCause());
throw Throwables.propagate(e.getCause());
}
}
else
Expand Down

0 comments on commit b9bdd9e

Please sign in to comment.