Skip to content

Commit

Permalink
fix: keypair null error (#6)
Browse files Browse the repository at this point in the history
* fix: keypair null error

* fix: keypair null error

* fix: keypair null error

* bump 0.2.1

---------

Co-authored-by: Netherwhal <[email protected]>
  • Loading branch information
rexlManu and Netherwhal authored Feb 13, 2024
1 parent 36648a6 commit 817401b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'net.simplyvanilla'
version '0.2.0'
version '0.2.1'

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
*/
public class SimplyVotifier extends JavaPlugin {

/** The Votifier instance. */
@Getter private static SimplyVotifier instance;

/** The vote receiver. */
@Getter private VoteReceiver voteReceiver;

Expand Down Expand Up @@ -99,7 +96,7 @@ public String getVersion() {

@Override
public KeyPair getKeyPair() {
return instance.getKeyPair();
return SimplyVotifier.this.getKeyPair();
}

@Override
Expand Down

0 comments on commit 817401b

Please sign in to comment.