Minor comment improvements

This commit is contained in:
Gunnar Morling 2014-01-03 19:46:51 +01:00
parent 7d9b42cf35
commit 4f3ef4f66c
2 changed files with 6 additions and 4 deletions

View File

@ -45,19 +45,20 @@
</dependency> </dependency>
<!-- Compile-only; Using "provided" scope as there is no such scope in Maven; <!-- Compile-only; Using "provided" scope as there is no such scope in Maven;
these dependencies are not required at runtime, only for prism generation --> these dependencies are not required at runtime, only for prism generation
and tests -->
<dependency> <dependency>
<groupId>com.jolira</groupId> <groupId>com.jolira</groupId>
<artifactId>hickory</artifactId> <artifactId>hickory</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Test -->
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<artifactId>mapstruct</artifactId> <artifactId>mapstruct</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Test -->
<dependency> <dependency>
<groupId>org.testng</groupId> <groupId>org.testng</groupId>
<artifactId>testng</artifactId> <artifactId>testng</artifactId>

View File

@ -23,6 +23,7 @@ import java.util.Collection;
import java.util.List; import java.util.List;
import java.util.SortedSet; import java.util.SortedSet;
import java.util.TreeSet; import java.util.TreeSet;
import javax.annotation.Generated; import javax.annotation.Generated;
import javax.lang.model.element.ElementKind; import javax.lang.model.element.ElementKind;
import javax.lang.model.element.TypeElement; import javax.lang.model.element.TypeElement;
@ -31,7 +32,7 @@ import javax.lang.model.util.Elements;
import org.mapstruct.ap.util.TypeFactory; import org.mapstruct.ap.util.TypeFactory;
/** /**
* Represents a type implementing a mapper interface (annotated with {@code @Mapper}. This is the root object of the * Represents a type implementing a mapper interface (annotated with {@code @Mapper}). This is the root object of the
* mapper model. * mapper model.
* *
* @author Gunnar Morling * @author Gunnar Morling