Skip to content

Commit

Permalink
- Prevent the extension from doing anything on missing resource bundles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christofer Dutz committed Apr 25, 2015
1 parent 957c1e1 commit b43e167
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -65,11 +65,14 @@ public void onEvent(Object o) throws Exception {
try {
internalLookup = true;
Artifact artifact = repositoryEvent.getArtifact();
if (artifact.getGroupId().startsWith("org.apache.flex")) {

if (artifact.getGroupId().startsWith("org.apache.flex") &&
!"rb.swc".equals(artifact.getExtension())) {
// Output a cool spash-screen ... sorry for that ... couldn't resist :-)
if(!flexSplashScreenShown) {
showFlexSplashScreen();
}

if(!canResolve(artifact.getGroupId(), artifact.getArtifactId(), artifact.getVersion(),
artifact.getExtension(), artifact.getClassifier())) {
initFlex(artifact.getVersion());
Expand Down

0 comments on commit b43e167

Please sign in to comment.