Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 50cbf25

Browse filesBrowse files
committed
Shut up FindBugs
1 parent 7b87de2 commit 50cbf25
Copy full SHA for 50cbf25

File tree

Expand file treeCollapse file tree

2 files changed

+6
-0
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+6
-0
lines changed

‎src/main/java/org/kohsuke/github/BranchProtection.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/BranchProtection.java
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
package org.kohsuke.github;
22

3+
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
4+
35
import java.util.ArrayList;
46
import java.util.List;
57

68
/**
79
* @author Kohsuke Kawaguchi
810
* @see GHBranch#disableProtection()
911
*/
12+
@SuppressFBWarnings(value = {"UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD"}, justification = "JSON API")
1013
class BranchProtection {
1114
boolean enabled;
1215
RequiredStatusChecks requiredStatusChecks;

‎src/main/java/org/kohsuke/github/GHStargazer.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHStargazer.java
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
package org.kohsuke.github;
22

3+
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
4+
35
import java.util.Date;
46

57
/**
68
* A stargazer at a repository on GitHub.
79
*
810
* @author noctarius
911
*/
12+
@SuppressFBWarnings(value = {"UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD"}, justification = "JSON API")
1013
public class GHStargazer {
1114

1215
private GHRepository repository;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.