We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5768cf8 commit 02d8710Copy full SHA for 02d8710
extension/android/executorch_android/src/main/java/org/pytorch/executorch/Module.java
@@ -204,10 +204,9 @@ public MethodMetadata getMethodMetadata(String name) {
204
throw new RuntimeException("method " + name + "does not exist for this module");
205
}
206
207
- MethodMetadata methodMetadata =mMethodMetadata.get(name);
+ MethodMetadata methodMetadata = mMethodMetadata.get(name);
208
if (methodMetadata != null) {
209
methodMetadata.setBackends(getUsedBackends(name));
210
-
211
212
return methodMetadata;
213
0 commit comments