Summary: Rather than having three separate annotations related to checking/assuming thread-safety, let's just have one annotation instead. Reviewed By: peterogithub Differential Revision: D4605258 fbshipit-source-id: 17c935bmaster
parent
e657d19194
commit
69df171632
@ -1,22 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2017 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
package com.facebook.infer.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/** like javax.annotation.concurrent.ThreadSafe, but for individual methods rather than classes */
|
||||
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.CLASS)
|
||||
public @interface ThreadSafeMethod {
|
||||
}
|
Loading…
Reference in new issue