Skip to content

Commit

Permalink
Turn off doclint
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsoft committed Jul 1, 2021
1 parent d13f943 commit 9f43264
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 54,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/silentsoft/csscolor4j/NamedColor.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@
/**
* This enum defines the named colors from CSS level 1 to CSS level 4.
*
* <table summary="Supported colors">
* <table>
* <tr>
* <th></th>
* <th>Name</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@ public class JavaDocApplication {
public static void main(String[] args) {
System.out.println("This enum defines the named colors from CSS level 1 to CSS level 4.");
System.out.println();
System.out.println("<table summary=\"Supported colors\">");
System.out.println("<table>");
System.out.println(" <tr>");
System.out.println(" <th></th>");
System.out.println(" <th>Name</th>");
Expand Down

0 comments on commit 9f43264

Please sign in to comment.