Rename skip_view_traversal setting

Summary: Sonar -> Flipper. 'nuff said.

Reviewed By: danielbuechele

Differential Revision: D9940670

fbshipit-source-id: ed9c8267c0c32952ac2069dc25bdb5359a438ce5
This commit is contained in:
Pascal Hartig
2018-09-19 13:04:55 -07:00
committed by Facebook Github Bot
parent 22742fd563
commit 0e753e684f
3 changed files with 3 additions and 3 deletions

View File

@@ -287,7 +287,7 @@ public class ViewGroupDescriptor extends NodeDescriptor<ViewGroup> {
}
private static boolean shouldSkip(View view) {
Object tag = view.getTag(R.id.sonar_skip_view_traversal);
Object tag = view.getTag(R.id.flipper_skip_view_traversal);
if (!(tag instanceof Boolean)) {
return false;
}

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item type="id" name="sonar_skip_view_traversal"/>
<item type="id" name="flipper_skip_view_traversal"/>
</resources>