Skip to content

Commit

Permalink
Rename App to Application
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesRabauer committed Jan 31, 2024
1 parent 808f421 commit 24e24f3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


@SuppressWarnings("checkstyle:MagicNumber")
public final class App
public final class Application
{
private static final String COS_ENDPOINT = ""; // eg "https://s3.us.cloud-object-storage.appdomain.cloud"
private static final String COS_API_KEY_ID = ""; // eg "0viPHOY7LbLNa9eLftrtHPpTjoGv6hbLD1QalRXikliJ"
Expand All @@ -30,7 +30,7 @@ public final class App
private static final String COS_BUCKET_LOCATION = ""; // eg "us"
private static final String BUCKET_NAME = "";

private static final Logger LOG = LoggerFactory.getLogger(App.class);
private static final Logger LOG = LoggerFactory.getLogger(Application.class);

/**
* This function connects to the IBM COS and writes one million String-Entries on it.
Expand Down Expand Up @@ -92,7 +92,7 @@ public static AmazonS3 createClient(
return build;
}

private App()
private Application()
{
}
}

0 comments on commit 24e24f3

Please sign in to comment.