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

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

import androidx.annotation.NonNull;

class DefaultFormatPriceStrategy implements FormatPriceStrategy
{
  @NonNull
  @Override
  public String format(@NonNull TaxiInfo.Product product)
  {
    return product.getPrice();
  }
}