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

ConfirmationDialogFactory.java « dialog « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca268a83cc70e31aec3c2b16d36cb8624c974efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.mapswithme.maps.dialog;

import android.support.annotation.NonNull;

public class ConfirmationDialogFactory implements DialogFactory
{
  @NonNull
  @Override
  public AlertDialog createDialog()
  {
    return new DefaultConfirmationAlertDialog();
  }
}