Skip to content

Commit 6f15469

Browse files
committed
Changed javadoc to prevent GitHub CI error.
1 parent 6266fd2 commit 6f15469

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/github/ygimenez/model/EmojiMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public boolean containsValue(V value) {
9898
*
9999
* @param key The key representing the value to be retrieved
100100
* @return The value mapped by given key
101-
* @see #put(Emoji, V)
101+
* @see #put(Emoji, Object)
102102
*/
103103
public V get(Emoji key) {
104104
cursor.setId(key);

src/main/java/com/github/ygimenez/model/TextMapping.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public boolean containsValue(V value) {
9797
*
9898
* @param key The key representing the value to be retrieved
9999
* @return The value mapped by given key
100-
* @see #put(String, V)
100+
* @see #put(String, Object)
101101
*/
102102
public V get(String key) {
103103
cursor.setId(key);

0 commit comments

Comments
 (0)