Make fields protected for easier subclassing.
This commit is contained in:
parent
64b778f11a
commit
ff35a07fa3
1 changed files with 4 additions and 4 deletions
|
@ -25,11 +25,11 @@ import java.io.Serializable;
|
||||||
*/
|
*/
|
||||||
public class SubnodeList implements Serializable {
|
public class SubnodeList implements Serializable {
|
||||||
|
|
||||||
Node node;
|
protected Node node;
|
||||||
List list;
|
protected List list;
|
||||||
|
|
||||||
transient long lastSubnodeFetch = 0;
|
transient protected long lastSubnodeFetch = 0;
|
||||||
transient long lastSubnodeChange = 0;
|
transient protected long lastSubnodeChange = 0;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue