Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
am 6a3faf5: Merge "Fix test framework to allow Mockito tests to run s…
Browse files Browse the repository at this point in the history
…uccessfully on ART." into lmp-dev

* commit '6a3faf5a8b182d20dea47fb76cf33456321ddf7a':
  Fix test framework to allow Mockito tests to run successfully on ART.
  • Loading branch information
rsauciuc authored and Android Git Automerger committed Oct 6, 2014
2 parents 704c3b9 + 6a3faf5 commit c21eaba
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -87,7 +87,7 @@ private ClassPathPackageInfo createPackageInfo(String packageName) {
// We get errors in the emulator if we don't use the caller's class loader.
topLevelClasses.add(Class.forName(className, false,
(classLoader != null) ? classLoader : CLASS_LOADER));
} catch (ClassNotFoundException e) {
} catch (ClassNotFoundException | NoClassDefFoundError e) {
// Should not happen unless there is a generated class that is not included in
// the .apk.
Log.w("ClassPathPackageInfoSource", "Cannot load class. "
Expand Down

0 comments on commit c21eaba

Please sign in to comment.