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

DefaultEventLogger.java « analytics « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a3b4761b234d720a18b3375c23f63b299f141df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.mapswithme.maps.analytics;

import android.app.Activity;
import android.app.Application;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

import com.mapswithme.maps.analytics.ContextDependentEventLogger;

import java.util.Map;

class DefaultEventLogger extends ContextDependentEventLogger
{
  DefaultEventLogger(@NonNull Application application)
  {
    super(application);
  }

  @Override
  public void initialize()
  {
    /* Do nothing */
  }

  @Override
  public void sendTags(@NonNull String tag, @Nullable String[] params)
  {
    /* Do nothing */
  }

  @Override
  public void logEvent(@NonNull String event, @NonNull Map<String, String> params)
  {
    /* Do nothing */
  }

  @Override
  public void startActivity(@NonNull Activity context)
  {
    /* Do nothing */
  }

  @Override
  public void stopActivity(@NonNull Activity context)
  {
    /* Do nothing */
  }
}