Skip to content

Commit

Permalink
Removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
BrainStone committed Apr 27, 2024
1 parent 0b606af commit 96f56be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Version 0.1.2
-------------

\* Got rid of download warnings.
\* Removed debug output.


Version 0.1.2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package team.aura_dev.aurasudo.platform.common.bootstrap;

import java.nio.file.Path;
import java.util.Arrays;
import team.aura_dev.lib.multiplatformcore.bootstrap.MultiProjectSLF4JBootstrapper;

public class AuraSudoBootstrapper extends MultiProjectSLF4JBootstrapper<AuraSudoBaseBootstrap> {
Expand All @@ -18,16 +17,11 @@ public AuraSudoBootstrapper() {

@Override
protected String[] getExcludedPackages() {
String[] packages =
new String[] {
"@[email protected]", // API package. The API isn't platform specific
AuraSudoBootstrapper.class.getPackage().getName(), // Path for the common platform
getPackageName() + ".bootstrap", // Path for the running platform
};

System.out.println(Arrays.toString(packages));

return packages;
return new String[] {
"@[email protected]", // API package. The API isn't platform specific
AuraSudoBootstrapper.class.getPackage().getName(), // Path for the common platform
getPackageName() + ".bootstrap", // Path for the running platform
};
}

/**
Expand Down

0 comments on commit 96f56be

Please sign in to comment.