コード例 #1
0
 /**
  * Removes the given child by its name from the directory.
  *
  * @param name the name of the Inode to remove
  * @return true if the inode was removed, false otherwise
  */
 public synchronized boolean removeChild(String name) {
   return mChildren.removeByField(mNameIndex, name);
 }