We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dfc55e commit e19186bCopy full SHA for e19186b
core/src/main/java/hudson/model/Slave.java
@@ -27,6 +27,7 @@
27
28
import edu.umd.cs.findbugs.annotations.CheckForNull;
29
import edu.umd.cs.findbugs.annotations.NonNull;
30
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
31
import hudson.DescriptorExtensionList;
32
import hudson.EnvVars;
33
import hudson.FilePath;
@@ -102,6 +103,7 @@
102
103
*
104
* @author Kohsuke Kawaguchi
105
*/
106
+@SuppressFBWarnings(value = "DESERIALIZATION_GADGET", justification = "unhappy about existence of readResolve?")
107
public abstract class Slave extends Node implements Serializable {
108
109
private static final Logger LOGGER = Logger.getLogger(Slave.class.getName());
0 commit comments