Home | History | Annotate | Download | only in annotations
      1 // Copyright 2014 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 package org.chromium.base.annotations;
      6 
      7 import java.lang.annotation.Retention;
      8 import java.lang.annotation.RetentionPolicy;
      9 
     10 /**
     11  *  @SuppressFBWarnings is used to suppress FindBugs warnings.
     12  *
     13  *  The long name of FindBugs warnings can be found at
     14  *  http://findbugs.sourceforge.net/bugDescriptions.html
     15  */
     16 @Retention(RetentionPolicy.CLASS)
     17 public @interface SuppressFBWarnings {
     18     String[] value() default {};
     19     String justification() default "";
     20 }
     21