Fixed the findbugs errors

This commit is contained in:
Alex Taylor
2019-12-14 15:38:34 -05:00
parent bc8f0aa223
commit a80b5b6abc
3 changed files with 28 additions and 15 deletions

View File

@@ -1,7 +1,11 @@
package org.kohsuke.github;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.net.URL;
@SuppressFBWarnings(value = { "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD", "URF_UNREAD_FIELD" },
justification = "JSON API")
public class GHRequestedAction extends GHObject {
private GHRepository owner;
private GitHub root;