From cd7aa418f10e85d45ee558e5e1aaae079fe3a673 Mon Sep 17 00:00:00 2001 From: Bananeweizen Date: Fri, 13 Jun 2014 18:16:37 +0200 Subject: fix #3907: duplicate share menu --- main/src/cgeo/geocaching/Geocache.java | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'main/src/cgeo/geocaching/Geocache.java') diff --git a/main/src/cgeo/geocaching/Geocache.java b/main/src/cgeo/geocaching/Geocache.java index 193930c..14a1313 100644 --- a/main/src/cgeo/geocaching/Geocache.java +++ b/main/src/cgeo/geocaching/Geocache.java @@ -713,17 +713,7 @@ public class Geocache implements ICache, IWaypoint { return getConnector() instanceof ISearchByCenter; } - public void shareCache(final Activity fromActivity, final Resources res) { - if (geocode == null) { - return; - } - - final Intent intent = getIntent(); - - fromActivity.startActivity(Intent.createChooser(intent, res.getText(R.string.action_bar_share_title))); - } - - public Intent getIntent() { + public Intent getShareIntent() { final StringBuilder subject = new StringBuilder("Geocache "); subject.append(geocode); if (StringUtils.isNotBlank(name)) { -- cgit v1.1