From: <fd...@us...> - 2009-12-10 23:42:52
|
Revision: 5694 http://jnode.svn.sourceforge.net/jnode/?rev=5694&view=rev Author: fduminy Date: 2009-12-10 23:42:46 +0000 (Thu, 10 Dec 2009) Log Message: ----------- fixed javadoc Modified Paths: -------------- trunk/core/src/core/org/jnode/util/BootableHashMap.java Modified: trunk/core/src/core/org/jnode/util/BootableHashMap.java =================================================================== --- trunk/core/src/core/org/jnode/util/BootableHashMap.java 2009-12-09 23:16:45 UTC (rev 5693) +++ trunk/core/src/core/org/jnode/util/BootableHashMap.java 2009-12-10 23:42:46 UTC (rev 5694) @@ -38,16 +38,16 @@ private transient boolean locked; /** - * Constructs an empty HashMap with the default initial capacity (16) - * and the default load factor (0.75). + * Constructs an empty HashMap. + * @see java.util.HashMap#HashMap() */ public BootableHashMap() { this.hashCode = super.hashCode(); } /** - * Constructs an empty HashMap with the default initial capacity (16) - * and the default load factor (0.75). + * Constructs an empty HashMap. + * @see java.util.HashMap#HashMap(int) * * @param initialCapacity */ @@ -141,7 +141,7 @@ /** * @param key - * @return True if the key is contained, false otherwiser + * @return True if the key is contained, false otherwise */ public boolean containsKey(Object key) { return getMapCache().containsKey(key); @@ -232,7 +232,7 @@ } /** - * @see org.jnode.vm.VmSystemObject#verifyBeforeEmit() + * {@inheritDoc} */ @SuppressWarnings("unchecked") public void verifyBeforeEmit() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |