Bug 1217675 - Eliminate Honeycomb compatibility from Fennec code draft
authorfriedger <friedger@gmail.com>
Thu, 08 Jun 2017 11:05:20 +0200
changeset 590900 c67bd941799c453c8d9934523f4da29f96322ecd
parent 588174 a010d98dab3ccf32f7131ec79df11c72266e5876
child 632345 c0ed69ad1c1351281b54d7fe013c14d7bd6f20d9
push id62872
push userbmo:mail@friedger.de
push dateThu, 08 Jun 2017 09:06:02 +0000
bugs1217675
milestone55.0a1
Bug 1217675 - Eliminate Honeycomb compatibility from Fennec code Remove all references to Build.SDK_INT comparing 14 and lower MozReview-Commit-ID: 6v0Ux2SC1zC
mobile/android/thirdparty/com/leanplum/Leanplum.java
--- a/mobile/android/thirdparty/com/leanplum/Leanplum.java
+++ b/mobile/android/thirdparty/com/leanplum/Leanplum.java
@@ -1016,17 +1016,17 @@ public class Leanplum {
   private static void resumeHeartbeat() {
     startHeartbeat();
   }
 
   /**
    * Call this to explicitly end the session. This should not be used in most cases, so we won't
    * make it public for now.
    */
-  public static void stop() {
+  static void stop() {
     if (Constants.isNoop()) {
       return;
     }
     if (!LeanplumInternal.hasCalledStart()) {
       Log.e("You cannot call stop before calling start");
       return;
     }