Skip to content
This repository has been archived by the owner on Jun 25, 2018. It is now read-only.

Commit

Permalink
renamed read method.
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Feb 14, 2011
1 parent f859a16 commit deb4a32
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@ protected void cleanGeneratedFiles() {

public CmvnConfiguredState getConfiguredState() {
if (configuredState == null) {
configuredState = readMavenConfig();
configuredState = readConfiguredState();
}
return configuredState;
}

protected CmvnConfiguredState readMavenConfig() {
protected CmvnConfiguredState readConfiguredState() {
if (mavenConfigFile.exists()) {
try {
return new CmvnConfiguredStateFile(mavenConfigFile).read();
Expand Down

0 comments on commit deb4a32

Please sign in to comment.