mxd 3 năm trước cách đây
mục cha
commit
bafee2c8b2

+ 0 - 4
magic-api/src/main/java/org/ssssssss/magicapi/core/model/Attributes.java

@@ -20,7 +20,6 @@ public class Attributes<T> {
 	 * @param key   key
 	 * @param value value
 	 */
-	@Transient
 	public void setAttribute(String key, T value) {
 		properties.put(key, value);
 	}
@@ -30,17 +29,14 @@ public class Attributes<T> {
 	 *
 	 * @param key key
 	 */
-	@Transient
 	public Object getAttribute(String key) {
 		return properties.get(key);
 	}
 
-	@Transient
 	public Map<String, T> getProperties() {
 		return properties;
 	}
 
-	@Transient
 	public void setProperties(Map<String, T> properties) {
 		this.properties = properties;
 	}