aboutsummaryrefslogtreecommitdiff
path: root/base/android/java/src/org/chromium/base/annotations/SuppressFBWarnings.java
blob: 89068ac9418bfb0743e472ab04bd3d0921c2aece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.base.annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 *  @SuppressFBWarnings is used to suppress FindBugs warnings.
 *
 *  The long name of FindBugs warnings can be found at
 *  http://findbugs.sourceforge.net/bugDescriptions.html
 */
@Retention(RetentionPolicy.CLASS)
public @interface SuppressFBWarnings {
    String[] value() default {};
    String justification() default "";
}