aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--processor/src/main/java/com/google/android/enterprise/connectedapps/processor/DispatcherGenerator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/DispatcherGenerator.java b/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/DispatcherGenerator.java
index a4f8ef6..f8733d1 100644
--- a/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/DispatcherGenerator.java
+++ b/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/DispatcherGenerator.java
@@ -184,7 +184,7 @@ final class DispatcherGenerator {
ArrayTypeName.of(byte.class));
methodCode.addStatement("throwableParcel.recycle()");
- methodCode.addStatement("$T.throwInBackground(e)", BACKGROUND_EXCEPTION_THROWER_CLASSNAME);
+ // methodCode.addStatement("$T.throwInBackground(e)", BACKGROUND_EXCEPTION_THROWER_CLASSNAME);
methodCode.addStatement("return throwableBytes");
methodCode.nextControlFlow("catch ($T e)", Error.class);
@@ -199,7 +199,7 @@ final class DispatcherGenerator {
ArrayTypeName.of(byte.class));
methodCode.addStatement("throwableParcel.recycle()");
- methodCode.addStatement("$T.throwInBackground(e)", BACKGROUND_EXCEPTION_THROWER_CLASSNAME);
+ // methodCode.addStatement("$T.throwInBackground(e)", BACKGROUND_EXCEPTION_THROWER_CLASSNAME);
methodCode.addStatement("return throwableBytes");
methodCode.endControlFlow();