Merge "Enable R8 for settings"

This commit is contained in:
TreeHugger Robot
2018-03-23 18:09:44 +00:00
committed by Android (Google) Code Review
3 changed files with 6 additions and 3 deletions

View File

@@ -16,6 +16,7 @@
package com.android.settings.bluetooth;
import android.support.annotation.Keep;
import android.text.InputFilter;
import android.text.Spanned;
@@ -40,6 +41,7 @@ import android.text.Spanned;
public class Utf8ByteLengthFilter implements InputFilter {
private final int mMaxBytes;
@Keep
Utf8ByteLengthFilter(int maxBytes) {
mMaxBytes = maxBytes;
}