Skip to content
Snippets Groups Projects
Commit a49ba3ac authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Trivial refactor for consistent naming.

This gives all our various new performance-related checkers a
consistent "EfficientFooChecker" naming style.

Bug: 155703208
Test: atest error_prone_android_framework_test
Change-Id: I8809fe46d20357201c8559037b468d717319afb9
parent caf66d02
No related branches found
No related tags found
No related merge requests found
......@@ -43,10 +43,10 @@ import com.sun.source.tree.Tree;
*/
@AutoService(BugChecker.class)
@BugPattern(
name = "AndroidFrameworkParcelablePerformance",
name = "AndroidFrameworkEfficientParcelable",
summary = "Verifies Parcelable performance best-practices",
severity = WARNING)
public final class ParcelablePerformanceChecker extends BugChecker
public final class EfficientParcelableChecker extends BugChecker
implements MethodInvocationTreeMatcher {
private static final Matcher<Tree> INSIDE_WRITE_TO_PARCEL = allOf(
enclosingClass(isSubtypeOf("android.os.Parcelable")),
......
......@@ -24,13 +24,13 @@ import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class ParcelablePerformanceCheckerTest {
public class EfficientParcelableCheckerTest {
private CompilationTestHelper compilationHelper;
@Before
public void setUp() {
compilationHelper = CompilationTestHelper.newInstance(
ParcelablePerformanceChecker.class, getClass());
EfficientParcelableChecker.class, getClass());
}
@Test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment