Skip to content

Commit 863995c

Browse files
committed
findbugs warning fix
1 parent cbfe72a commit 863995c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/org/kohsuke/github/GHInvitation.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
package org.kohsuke.github;
22

3+
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
4+
35
import java.io.IOException;
46
import java.net.URL;
57

68
/**
79
* @see GitHub#getMyInvitations()
810
* @see GHRepository#listInvitations()
911
*/
12+
@SuppressFBWarnings(value = {"UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD",
13+
"NP_UNWRITTEN_FIELD"}, justification = "JSON API")
1014
public class GHInvitation extends GHObject {
1115
/*package almost final*/ GitHub root;
1216

0 commit comments

Comments
 (0)