Skip to content

Commit 0ce8d2a

Browse files
committed
vfs: make file handle immutable class
no reasons not to. Acked-by: Marina Sahakyan Target: master
1 parent 38249c0 commit 0ce8d2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/org/dcache/nfs/vfs/Inode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009 - 2019 Deutsches Elektronen-Synchroton,
2+
* Copyright (c) 2009 - 2024 Deutsches Elektronen-Synchroton,
33
* Member of the Helmholtz Association, (DESY), HAMBURG, GERMANY
44
*
55
* This library is free software; you can redistribute it and/or modify
@@ -23,7 +23,7 @@
2323

2424
public class Inode {
2525

26-
FileHandle fh;
26+
private final FileHandle fh;
2727

2828
public Inode(byte[] bytes) {
2929
this(new FileHandle(bytes));

0 commit comments

Comments
 (0)