Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'android/src/com/mapswithme/maps/IntentProcessor.java')
-rw-r--r--android/src/com/mapswithme/maps/IntentProcessor.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/src/com/mapswithme/maps/IntentProcessor.java b/android/src/com/mapswithme/maps/IntentProcessor.java
index 5a490bde6d..b82c25fb7e 100644
--- a/android/src/com/mapswithme/maps/IntentProcessor.java
+++ b/android/src/com/mapswithme/maps/IntentProcessor.java
@@ -4,7 +4,7 @@ import android.content.Intent;
public interface IntentProcessor
{
- public boolean isIntentSupported(Intent intent);
+ boolean isIntentSupported(Intent intent);
- public boolean processIntent(Intent intent);
+ boolean processIntent(Intent intent);
}