Archiviert
13
0

Remember to perform deep cloning.

Dieser Commit ist enthalten in:
Kristian S. Stangeland 2012-12-10 16:30:48 +01:00
Ursprung 40345f25ff
Commit afdb0d0324
3 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -4,7 +4,7 @@
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<name>ProtocolLib</name>
<version>1.8.0-SNAPSHOT</version>
<version>1.8.0</version>
<description>Provides read/write access to the Minecraft protocol.</description>
<url>http://dev.bukkit.org/server-mods/protocollib/</url>
<developers>

Datei anzeigen

@ -300,7 +300,7 @@ public class WrappedDataWatcher implements Iterable<WrappedWatchableObject> {
// Make a new copy instead
for (WrappedWatchableObject watchable : this) {
clone.setObject(watchable.getIndex(), watchable.getValue());
clone.setObject(watchable.getIndex(), watchable.getClonedValue());
}
return clone;
}

Datei anzeigen

@ -307,7 +307,7 @@ public class WrappedWatchableObject {
}
// Helper
private Object getClonedValue() throws FieldAccessException {
Object getClonedValue() throws FieldAccessException {
Object value = getValue();
// Only a limited set of references types are supported