Hi Peter,
So I'll just tell you my thoughts through issues, I guess that's the easiest and most trackable way to communicate. BTW, too bad you already released 1.0.0 to Maven Central. Maybe you could add a disclaimer that fluflu doesn't (yet?) follow semantic versioning: http://semver.org/
About Cloneable, your example contains a reference to:
protected List<byte[]> b = new LinkedList<>();
This list, when cloned, will not deep-clone all the byte arrays. Note, that it works for this Set:
Set<Integer> j = new HashSet<>();
... because Integer is immutable.
So I think that the promise of supporting Cloneable might be a false one. What do you think?
Hi Peter,
So I'll just tell you my thoughts through issues, I guess that's the easiest and most trackable way to communicate. BTW, too bad you already released 1.0.0 to Maven Central. Maybe you could add a disclaimer that fluflu doesn't (yet?) follow semantic versioning: http://semver.org/
About
Cloneable, your example contains a reference to:This list, when cloned, will not deep-clone all the byte arrays. Note, that it works for this
Set:... because
Integeris immutable.So I think that the promise of supporting
Cloneablemight be a false one. What do you think?