Merge "Frameworks: Let GuardedBy accept multiple locks" am: 940a9e95df am: b32933c3cc

am: a48b21a802

Change-Id: I59fd2f34f26a036387e909b6ad9f6c78b6bdc897
This commit is contained in:
Andreas Gampe
2018-07-19 12:27:03 -07:00
committed by android-build-merger

View File

@@ -23,10 +23,10 @@ import java.lang.annotation.Target;
/**
* Annotation type used to mark a method or field that can only be accessed when
* holding the referenced lock.
* holding the referenced locks.
*/
@Target({ ElementType.FIELD, ElementType.METHOD })
@Retention(RetentionPolicy.CLASS)
public @interface GuardedBy {
String value();
String[] value();
}