Skip to content

Commit 7f165c6

Browse files
committed
minor javadoc fixes
1 parent cb9924d commit 7f165c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/il/ac/bgu/cs/bp/bpjs/internal/ScriptableUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ public static boolean jsScriptableObjectEqual(ScriptableObject o1, ScriptableObj
109109
* An equals method of two maps, that uses JS-equality rather than Java-equality.
110110
* JS-equality only used for values, not for keys.
111111
*
112-
* @param a
113-
* @param b
114-
* @return
112+
* @param a A map
113+
* @param b Another map
114+
* @return {@code true} iff maps are semantically equal.
115115
*/
116116
public static boolean jsMapEquals( Map<?,?> a, Map<?,?> b ) {
117117
if ( a == b ) return true;

0 commit comments

Comments
 (0)