Merge "Fix issue #22460110: AssistStructure.ViewNode.isAssistBlocked() always..." into mnc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
c4e2bcd4dc
@@ -812,7 +812,7 @@ public class AssistStructure implements Parcelable {
|
|||||||
* Returns true if assist data has been blocked starting at this node in the hierarchy.
|
* Returns true if assist data has been blocked starting at this node in the hierarchy.
|
||||||
*/
|
*/
|
||||||
public boolean isAssistBlocked() {
|
public boolean isAssistBlocked() {
|
||||||
return (mFlags&ViewNode.FLAGS_ASSIST_BLOCKED) == 0;
|
return (mFlags&ViewNode.FLAGS_ASSIST_BLOCKED) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user