Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit 95c2ceb

Browse files
committed
+ Add Lombok for future use of @Setter and @Getter
+ Fixed GuildedObject to be getJGAPI() method instead of weird get_JGAPI() [ ] Need documentation [ ] Need to comply with library standards of Guilded [ ] Release beta version 1.0 when documentation is done and library standards are complied with
1 parent c597d63 commit 95c2ceb

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,12 @@
105105
<artifactId>json</artifactId>
106106
<version>20220320</version>
107107
</dependency>
108-
108+
<dependency>
109+
<groupId>org.projectlombok</groupId>
110+
<artifactId>lombok</artifactId>
111+
<version>1.18.24</version>
112+
<scope>provided</scope>
113+
</dependency>
109114
</dependencies>
110115

111116
</project>

src/main/java/dev/jgapi/jg_api/entities/GuildedObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public abstract class GuildedObject {
77
public GuildedObject(JG_API jg_api) {
88
this.jg_api = jg_api;
99
}
10-
public JG_API get_JGAPI() {
10+
public JG_API getJGAPI() {
1111
return this.jg_api;
1212
}
1313
}

0 commit comments

Comments
 (0)