Skip to content
This repository was archived by the owner on Apr 24, 2018. It is now read-only.

Commit 218599c

Browse files
committed
Remove unused method in ApiUtils
1 parent aceded4 commit 218599c

File tree

1 file changed

+0
-8
lines changed
  • library/src/main/java/com/github/amlcurran/showcaseview

1 file changed

+0
-8
lines changed

library/src/main/java/com/github/amlcurran/showcaseview/ApiUtils.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616

1717
package com.github.amlcurran.showcaseview;
1818

19-
import android.annotation.TargetApi;
2019
import android.os.Build;
21-
import android.view.View;
2220

2321
public class ApiUtils {
2422

@@ -30,10 +28,4 @@ public boolean isCompatWithHoneycomb() {
3028
return isCompatWith(Build.VERSION_CODES.HONEYCOMB);
3129
}
3230

33-
@TargetApi(14)
34-
public void setFitsSystemWindowsCompat(View view) {
35-
if (isCompatWith(Build.VERSION_CODES.ICE_CREAM_SANDWICH)) {
36-
view.setFitsSystemWindows(false);
37-
}
38-
}
3931
}

0 commit comments

Comments
 (0)