We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbfe72a commit 863995cCopy full SHA for 863995c
src/main/java/org/kohsuke/github/GHInvitation.java
@@ -1,12 +1,16 @@
1
package org.kohsuke.github;
2
3
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
4
+
5
import java.io.IOException;
6
import java.net.URL;
7
8
/**
9
* @see GitHub#getMyInvitations()
10
* @see GHRepository#listInvitations()
11
*/
12
+@SuppressFBWarnings(value = {"UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD",
13
+ "NP_UNWRITTEN_FIELD"}, justification = "JSON API")
14
public class GHInvitation extends GHObject {
15
/*package almost final*/ GitHub root;
16
0 commit comments