Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused code #66

Merged
merged 1 commit into from
Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,6 @@

@UtilityClass
public class HetznerConstants {
/**
* System property name prefix for all properties that this plugin understands.
*/
public static final String PROP_PREFIX = HetznerConstants.class.getPackage().getName();

/**
* Name of system property used to override Hetzner API endpoint, used by tests only.
*/
public static final String PROP_API_ENDPOINT = PROP_PREFIX + ".api-endpoint";

/**
* Hetzner public cloud API endpoint.
*/
public static final String DEFAULT_ENDPOINT = "https://api.hetzner.cloud/v1/";

/**
* Namespace for labels added to all objects managed by this plugin.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private static Set<HetznerCloud> getHetznerClouds() {
}

@Override
protected void doRun() throws Exception {
protected void doRun() {
doCleanup();
}

Expand Down