Skip to content

Commit 96f56be

Browse files
committed
Removed debug output
1 parent 0b606af commit 96f56be

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Version 0.1.2
22
-------------
33

44
\* Got rid of download warnings.
5+
\* Removed debug output.
56

67

78
Version 0.1.2

platform/common/src/main/java/team/aura_dev/aurasudo/platform/common/bootstrap/AuraSudoBootstrapper.java

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package team.aura_dev.aurasudo.platform.common.bootstrap;
22

33
import java.nio.file.Path;
4-
import java.util.Arrays;
54
import team.aura_dev.lib.multiplatformcore.bootstrap.MultiProjectSLF4JBootstrapper;
65

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

1918
@Override
2019
protected String[] getExcludedPackages() {
21-
String[] packages =
22-
new String[] {
23-
"@[email protected]", // API package. The API isn't platform specific
24-
AuraSudoBootstrapper.class.getPackage().getName(), // Path for the common platform
25-
getPackageName() + ".bootstrap", // Path for the running platform
26-
};
27-
28-
System.out.println(Arrays.toString(packages));
29-
30-
return packages;
20+
return new String[] {
21+
"@[email protected]", // API package. The API isn't platform specific
22+
AuraSudoBootstrapper.class.getPackage().getName(), // Path for the common platform
23+
getPackageName() + ".bootstrap", // Path for the running platform
24+
};
3125
}
3226

3327
/**

0 commit comments

Comments
 (0)