Skip to content

Commit

Permalink
Fix(inspect-code): Redundant throws
Browse files Browse the repository at this point in the history
  • Loading branch information
rkubis committed Nov 22, 2024
1 parent d929836 commit eff6ace
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static void deployKeycloak() throws InterruptedException, IOException {
deployKeycloak(Environment.NAMESPACE);
}

public static void deployOAuthKafkaKeycloak() throws IOException, InterruptedException {
public static void deployOAuthKafkaKeycloak() throws InterruptedException {
deployOAuthKafkaKeycloak(Environment.NAMESPACE);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public Deployment getDeployment() {
}

@Override
public void install() throws InterruptedException {
public void install() {
String catalogName = Environment.SSO_CATALOG;
String catalogNamespace = Environment.CATALOG_NAMESPACE;
String ssoPackage = Environment.SSO_PACKAGE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Deployment getDeployment() {
}

@Override
public void install() throws InterruptedException {
public void install() {
/* Operator namespace is created in OperatorManager. */

String catalogName = Environment.CATALOG;
Expand Down

0 comments on commit eff6ace

Please sign in to comment.