Commit ce1d8d6c by olly Committed by Oliver Woodman

Remove obsolete SDK_INT modification

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=210531569
parent efe8f09f
...@@ -85,9 +85,7 @@ public final class Util { ...@@ -85,9 +85,7 @@ public final class Util {
* Like {@link android.os.Build.VERSION#SDK_INT}, but in a place where it can be conveniently * Like {@link android.os.Build.VERSION#SDK_INT}, but in a place where it can be conveniently
* overridden for local testing. * overridden for local testing.
*/ */
public static final int SDK_INT = public static final int SDK_INT = Build.VERSION.SDK_INT;
(Build.VERSION.SDK_INT == 25 && Build.VERSION.CODENAME.charAt(0) == 'O') ? 26
: Build.VERSION.SDK_INT;
/** /**
* Like {@link Build#DEVICE}, but in a place where it can be conveniently overridden for local * Like {@link Build#DEVICE}, but in a place where it can be conveniently overridden for local
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment