Skip to content

Commit

Permalink
Fixed merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
kallerosenbaum committed Oct 8, 2015
1 parent f03fb4d commit 08ded6f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions public/mbw/src/main/java/com/mycelium/wallet/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public static void showSimpleMessageDialog(final Context context, String message
* Show a dialog with a buttons that displays a message. Click the message
* or the back button to make it disappear.
*/
public static void showSimpleMessageDialog(final Context context, String message, final Runnable okayRunner, @StringRes int okayButtonText, final Runnable postRunner) {
public static void showSimpleMessageDialog(final Context context, String message, final Runnable okayRunner, int okayButtonText, final Runnable postRunner) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View layout = inflater.inflate(R.layout.simple_message_dialog, null);
AlertDialog.Builder builder = new AlertDialog.Builder(context).setView(layout);
Expand Down Expand Up @@ -295,7 +295,6 @@ public void onDismiss(DialogInterface dialog) {
dialog.show();
}


/**
* Show an optional message/
* <p/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
import com.mycelium.wallet.activity.modern.Toaster;
import com.mycelium.wallet.activity.send.BroadcastTransactionActivity;
import com.mycelium.wallet.activity.util.EnterAddressLabelUtil;
import com.mycelium.wallet.activity.util.AdaptiveDateFormat;
import com.mycelium.wallet.activity.util.TransactionConfirmationsDisplay;
import com.mycelium.wallet.event.AddressBookChanged;
import com.mycelium.wallet.event.ExchangeRatesRefreshed;
Expand Down

0 comments on commit 08ded6f

Please sign in to comment.