]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/standard/java/com/stoutner/privacybrowser/BannerAd.java
Refactor the code to make all the Java files lint free.
[PrivacyBrowserAndroid.git] / app / src / standard / java / com / stoutner / privacybrowser / BannerAd.java
index 1afe688addd7dd3de22cd070c695b0b0188a9225..a6f98a6d159922e856b26782650ebaa40dbd1f7f 100644 (file)
@@ -23,27 +23,27 @@ import android.content.Context;
 import android.view.View;
 
 class BannerAd {
-    public static void requestAd(View view) {
+    static void requestAd(View view) {
         // Do nothing because this is the standard flavor.
     }
 
-    public static void reloadAfterRotate(View view, Context applicationContext, String ad_id) {
+    static void reloadAfterRotate(View view, Context applicationContext, String ad_id) {
         // Do nothing because this is the standard flavor.
     }
 
-    public static void hideAd(View view) {
+    static void hideAd(View view) {
         // Do nothing because this is the standard flavor.
     }
 
-    public static void showAd(View view) {
+    static void showAd(View view) {
         // Do nothing because this is the standard flavor.
     }
 
-    public static void pauseAd(View view) {
+    static void pauseAd(View view) {
         // Do nothing because this is the standard flavor.
     }
 
-    public static void resumeAd(View view) {
+    static void resumeAd(View view) {
         // Do nothing because this is the standard flavor.
     }
 }
\ No newline at end of file