예제 #1
0
파일: Attributes.java 프로젝트: jshjs11/xi
 @SuppressWarnings("unchecked")
 @Override
 public Object clone() {
   Attributes clone;
   try {
     clone = (Attributes) super.clone();
   } catch (CloneNotSupportedException e) {
     throw new AssertionError(e); // android-changed
   }
   clone.map = (Map<Object, Object>) ((HashMap) map).clone();
   return clone;
 }