Skip to content

Commit acf5e4d

Browse files
jglickdwnusbaum
andauthored
Mark fields transient to satisfy SpotBugs
Co-authored-by: Devin Nusbaum <dwnusbaum@users.noreply.github.com>
1 parent 444b80e commit acf5e4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jenkinsci/plugins/workflow/log/BufferedBuildListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ final class BufferedBuildListener extends OutputStreamTaskListener.Default imple
5252
private static final Cleaner cleaner = Cleaner.create(new NamingThreadFactory(new DaemonThreadFactory(), BufferedBuildListener.class.getName() + ".cleaner"));
5353

5454
private final OutputStream out;
55-
private final Channel channel;
56-
private final Listener listener;
55+
private transient final Channel channel;
56+
private transient final Listener listener;
5757

5858
BufferedBuildListener(OutputStream out) {
5959
this.out = out;

0 commit comments

Comments
 (0)