Skip to content

Commit

Permalink
nfsv4: make NO_TAG strng constant static
Browse files Browse the repository at this point in the history
Acked-by: Paul Millar
Acked-by: Lea Morschel
Target: master
  • Loading branch information
kofemann committed Jul 7, 2020
1 parent 34156a6 commit fe51855
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/main/java/org/dcache/nfs/v4/CompoundBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@

public class CompoundBuilder {

private final String NO_TAG = "";
private static final String NO_TAG = "";

private String tag = NO_TAG;
private int minorversion = 1;
private List<nfs_argop4> ops = new ArrayList<>();
Expand Down

0 comments on commit fe51855

Please sign in to comment.