Skip to content

Commit f788881

Browse files
author
TheProgramSrc
committed
ChangeLog:
• Small fix with MemoryStorage
1 parent ef9387c commit f788881

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>xyz.theprogramsrc</groupId>
88
<artifactId>SuperCoreAPI</artifactId>
9-
<version>3.2.2</version>
9+
<version>3.2.3</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SuperCoreAPI</name>

src/main/java/xyz/theprogramsrc/supercoreapi/global/storage/memory/MemoryStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public boolean has(String key){
3636
return this.memory.containsKey(key);
3737
}
3838

39-
public boolean has(OBJ value){
39+
public boolean hasValue(OBJ value){
4040
return this.memory.containsValue(value);
4141
}
4242

0 commit comments

Comments
 (0)