Small readme update

This commit is contained in:
Steveice10 2012-03-25 17:52:34 -07:00
parent c410b4e2b6
commit 365dd2c4e6
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@ OpenNBT is a continuation of Graham Edgecombe's jNBT library.
<b>License</b>
--------------
OpenNBT is licensed under the <b>[BSD](http://www.opensource.org/licenses/BSD-3-Clause)</b> license. (See LICENSE.txt for more info.)
OpenNBT is licensed under the <b>[BSD](http://www.opensource.org/licenses/BSD-3-Clause)</b> license. See LICENSE.txt for more info.
<b>Building the Source</b>

View File

@ -36,6 +36,7 @@ package ch.spacebase.opennbt.tag;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
@ -100,7 +101,7 @@ public final class CompoundTag extends Tag {
public CompoundTag clone() {
Map<String, Tag> newMap = NBTUtils.cloneMap(this.getValue());
return new CompoundTag(this.getName(), newMap);
}