Skip to content

Commit d93128d

Browse files
committed
formatting
1 parent 6da9fbe commit d93128d

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

maven-release-manager/src/main/mdo/release-descriptor.mdo

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@
514514
<defaultValue>false</defaultValue>
515515
<description>
516516
NOTE : currently only implemented with svn scm. Enable a workaround to prevent issue due to svn client &amp;gt; 1.5.0
517-
(http://jira.codehaus.org/browse/SCM-406)
517+
(https://issues.apache.org/jira/browse/SCM-406)
518518
</description>
519519
</field>
520520
<field>
@@ -678,11 +678,11 @@
678678
679679
public String getProjectReleaseVersion( String projectId )
680680
{
681-
if ( projectVersions.containsKey( projectId ) )
682-
{
683-
return projectVersions.get( projectId ).getRelease();
684-
}
685-
return null;
681+
if ( projectVersions.containsKey( projectId ) )
682+
{
683+
return projectVersions.get( projectId ).getRelease();
684+
}
685+
return null;
686686
}
687687
688688
/**
@@ -698,11 +698,11 @@
698698
699699
public String getProjectDevelopmentVersion( String projectId )
700700
{
701-
if ( projectVersions.containsKey( projectId ) )
702-
{
703-
return projectVersions.get( projectId ).getDevelopment();
704-
}
705-
return null;
701+
if ( projectVersions.containsKey( projectId ) )
702+
{
703+
return projectVersions.get( projectId ).getDevelopment();
704+
}
705+
return null;
706706
}
707707
708708
/**
@@ -749,16 +749,16 @@
749749
750750
public String getProjectOriginalVersion( String projectId )
751751
{
752-
if ( projectVersions.containsKey( projectId ) )
753-
{
754-
return projectVersions.get( projectId ).getOriginal();
755-
}
756-
return null;
752+
if ( projectVersions.containsKey( projectId ) )
753+
{
754+
return projectVersions.get( projectId ).getOriginal();
755+
}
756+
return null;
757757
}
758758
759759
public void addOriginalVersion( String projectId, String version )
760760
{
761-
computeIfAbsent( projectVersions, projectId ).setOriginal( version );
761+
computeIfAbsent( projectVersions, projectId ).setOriginal( version );
762762
}
763763
764764
/**
@@ -897,7 +897,7 @@
897897
return false;
898898
}
899899
if ( ( checkModificationExcludes == null || ( checkModificationExcludes != null && checkModificationExcludes.size() == 0) ) &&
900-
( that.getCheckModificationExcludes() == null || ( that.getCheckModificationExcludes() != null && that.getCheckModificationExcludes().size() == 0) ) )
900+
( that.getCheckModificationExcludes() == null || ( that.getCheckModificationExcludes() != null && that.getCheckModificationExcludes().size() == 0 ) ) )
901901
{
902902
// Do nothing. This is a Modello workaround
903903
}
@@ -909,7 +909,7 @@
909909
return false;
910910
}
911911
}
912-
if ( ( originalScmInfo == null || (originalScmInfo != null && originalScmInfo.size() == 0 ) ) &&
912+
if ( ( originalScmInfo == null || ( originalScmInfo != null && originalScmInfo.size() == 0 ) ) &&
913913
( that.getOriginalScmInfo() == null || ( that.getOriginalScmInfo() != null && that.getOriginalScmInfo().size() == 0 ) ) )
914914
{
915915
// Do nothing. This is a Modello workaround

0 commit comments

Comments
 (0)