-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0b606af
commit 96f56be
Showing
2 changed files
with
6 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ Version 0.1.2 | |
------------- | ||
|
||
\* Got rid of download warnings. | ||
\* Removed debug output. | ||
|
||
|
||
Version 0.1.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> { | ||
|
@@ -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 | ||
}; | ||
} | ||
|
||
/** | ||
|