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: cb56dfb106ed7bd14b506a919e8a275523b2ba62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.mapswithme.maps.dialog;

import androidx.annotation.NonNull;

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