()
| 61 | } |
| 62 | |
| 63 | public void handleViewIntent() { |
| 64 | final Intent bundleIntent = getIntent(); |
| 65 | if (bundleIntent == null) |
| 66 | return; |
| 67 | |
| 68 | final String action = bundleIntent.getAction(); |
| 69 | Log.v("Okular", "Starting action: " + action); |
| 70 | if (action == "android.intent.action.VIEW") { |
| 71 | displayUri(bundleIntent.getData()); |
| 72 | } |
| 73 | } |
| 74 | } |
nothing calls this directly
no test coverage detected