Skip to content

Commit

Permalink
FORGE-1162: META-INF/beans.xml for CDI 1.1 is now created correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Sep 5, 2013
1 parent 13f5d4f commit f4f0fec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ public boolean install()
return super.install();
}

@Override
public boolean isInstalled()
{
return getConfigFile().exists() && super.isInstalled();
}

protected abstract String getInitialBeansXMLContent();

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ public Version getSpecVersion()
return new SingleVersion("1.0");
}

@Override
public boolean isInstalled()
{
return getConfigFile().exists() && super.isInstalled();
}

@Override
protected String getInitialBeansXMLContent()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,6 @@ public Version getSpecVersion()
return new SingleVersion("1.1");
}

@Override
public boolean isInstalled()
{
return super.isInstalled();
}

@Override
protected String getInitialBeansXMLContent()
{
Expand Down

0 comments on commit f4f0fec

Please sign in to comment.