[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moe sync without linting #410

Merged
merged 5 commits into from
Apr 30, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Resolve a gmscore one version violation by removing an unused dep
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=169435879
  • Loading branch information
clm authored and jeanbza committed Apr 28, 2018
commit 68a425be87f77c482f9804fa659a88aa470eb7b2
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@ public static RuntimeException propagate(Throwable throwable) {
*/
public static void propagateIfPossible(Throwable throwable) {
if (throwable != null) {
if (throwable instanceof RuntimeException) {
throw (RuntimeException) throwable;
}
if (throwable instanceof Error) {
throw (Error) throwable;
}
com.google.common.base.Throwables.throwIfUnchecked(throwable);
}
}

Expand Down