Skip to content

Commit

Permalink
fix: javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed Nov 2, 2023
1 parent 1379493 commit 17c1519
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<doclint>all,-missing</doclint>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* Markiert eine Methode als EventHandler eines {@link EventBus}. Die Methoden werden über
* {@link AnnotatedHandlerFinder} ermittelt.
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ConfigureFactory {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* Markiert eine Methode als EventHandler eines {@link EventBus}. Die Methoden werden über
* {@link AnnotatedHandlerFinder} ermittelt.
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Subscribe {
Expand Down

0 comments on commit 17c1519

Please sign in to comment.