Skip to content

Commit 4a5bee8

Browse files
Merge pull request #127 from lasselindqvist/fix-javadocs
Fix Javadocs
2 parents 8b971e1 + 852fbd2 commit 4a5bee8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/org/codehaus/mojo/flatten/FlattenMojo.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,7 @@ private Model createResolvedPom( ModelBuildingRequest buildingRequest )
618618
*
619619
* @param effectivePom is the effective POM.
620620
* @return the clean POM.
621+
* @throws MojoExecutionException if anything goes wrong.
621622
*/
622623
protected Model createCleanPom( Model effectivePom ) throws MojoExecutionException
623624
{
@@ -825,6 +826,7 @@ private List<MavenProject> getReactorModelsFromSession()
825826
*
826827
* @param buildingRequest {@link ModelBuildingRequest}
827828
* @param embedBuildProfileDependencies embed build profiles yes/no.
829+
* @param flattenMode the flattening mode
828830
* @return the parsed and calculated effective POM.
829831
* @throws MojoExecutionException if anything goes wrong.
830832
*/
@@ -957,6 +959,7 @@ protected static boolean isBuildTimeDriven( Activation activation )
957959
*
958960
* @param effectiveModel is the effective POM {@link Model} to process.
959961
* @return the {@link List} of {@link Dependency dependencies}.
962+
* @throws MojoExecutionException if anything goes wrong.
960963
*/
961964
protected List<Dependency> createFlattenedDependencies( Model effectiveModel )
962965
throws MojoExecutionException {
@@ -1111,6 +1114,7 @@ private void createFlattenedDependenciesAll( List<Dependency> projectDependencie
11111114
*
11121115
* @param effectiveModel is the effective POM {@link Model} to process.
11131116
* @param flattenedDependencies is the {@link List} where to add the collected {@link Dependency dependencies}.
1117+
* @throws MojoExecutionException if anything goes wrong.
11141118
*/
11151119
protected void createFlattenedDependencies( Model effectiveModel, List<Dependency> flattenedDependencies )
11161120
throws MojoExecutionException

src/main/java/org/codehaus/mojo/flatten/cifriendly/CiInterpolatorImpl.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ public String interpolate( String input )
125125
/**
126126
* Entry point for recursive resolution of an expression and all of its
127127
* nested expressions.
128-
*
129-
* @todo Ensure unresolvable expressions don't trigger infinite recursion.
130128
*/
131129
public String interpolate( String input, RecursionInterceptor recursionInterceptor )
132130
throws InterpolationException

0 commit comments

Comments
 (0)