Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJeterLP committed Dec 26, 2022
1 parent e4beddd commit 1b5fed9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/de/jeter/updatechecker/GitHubUpdateChecker.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public class GitHubUpdateChecker extends UpdateChecker {
private String url;
private Result result = Result.NO_UPDATE;
private String version;
private URL downloadLink;

/**
* Initiates and runs a new UpdateChecker gaining GitHub releases
Expand All @@ -29,7 +28,6 @@ public class GitHubUpdateChecker extends UpdateChecker {
public GitHubUpdateChecker(JavaPlugin plugin, String repoOwner, String repository) {
this.plugin = plugin;
this.url = "https://github.com/" + repoOwner + "/" + repository + "/releases/latest";
this.downloadLink = null;
super.init(plugin);
}

Expand Down

0 comments on commit 1b5fed9

Please sign in to comment.