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

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

import androidx.annotation.NonNull;

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