diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2011-11-09 15:29:54 +0100 |
---|---|---|
committer | Samuel Tardieu <sam@rfc1149.net> | 2011-11-09 18:12:22 +0100 |
commit | 58457fb225779c9e71162ae78a5559faee0c18d5 (patch) | |
tree | c4e27c6c0f2ff5888ad98d5f40e7b1ddf214cfa2 /main/src/gnu | |
parent | 755561039b7698e8d1f5284da87e54f9a954f49a (diff) | |
download | cgeo-58457fb225779c9e71162ae78a5559faee0c18d5.zip cgeo-58457fb225779c9e71162ae78a5559faee0c18d5.tar.gz cgeo-58457fb225779c9e71162ae78a5559faee0c18d5.tar.bz2 |
Prevent boolean boxing/unboxing
Diffstat (limited to 'main/src/gnu')
-rw-r--r-- | main/src/gnu/android/app/appmanualclient/AppManualReaderClient.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/gnu/android/app/appmanualclient/AppManualReaderClient.java b/main/src/gnu/android/app/appmanualclient/AppManualReaderClient.java index 8293b7d..00593a0 100644 --- a/main/src/gnu/android/app/appmanualclient/AppManualReaderClient.java +++ b/main/src/gnu/android/app/appmanualclient/AppManualReaderClient.java @@ -1,7 +1,5 @@ package gnu.android.app.appmanualclient; -import java.util.List; - import android.content.ActivityNotFoundException; import android.content.Context; import android.content.Intent; @@ -11,6 +9,8 @@ import android.content.pm.ResolveInfo; import android.net.Uri; import android.util.Log; +import java.util.List; + /** * The "App Manual Reader" client is a class to be used in applications which * want to offer their users manuals through the gnu.android.appmanualreader @@ -200,7 +200,7 @@ public class AppManualReaderClient { * {@literal fallbackUri} was given. */ public static void openManual(String manualIdentifier, String topic, - Context context, String fallbackUri, Boolean contextAffinity) + Context context, String fallbackUri, boolean contextAffinity) throws ActivityNotFoundException { // // The path of an "appmanual:" URI consists simply of the locale |