Skip to content

Commit

Permalink
ISPN-1011 Fix ClassCastException when generating javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
galderz authored and mmarkus committed Apr 5, 2011
1 parent 1b2455c commit 6129827
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -641,7 +641,7 @@ public interface IndexingConfig extends FluentTypes {
IndexingConfig indexLocalOnly(Boolean indexLocalOnly);

/**
* Indexing is disabled by default, but using the fluent API entering the {@link #indexing()}
* Indexing is disabled by default, but using the fluent API entering the {@link FluentTypes#indexing()}
* method enables Indexing implicitly. If needed, this method can be used to disable it.
* @return <code>this</code>, for method chaining
*/
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Expand Up @@ -59,7 +59,6 @@
</properties>
<build>
<plugins>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -73,6 +72,9 @@
</goals>
<configuration>
<quiet>true</quiet>
<!-- In case you anyone needs to trace javadoc issues
<additionalJOption>-J-Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y</additionalJOption>
-->
<stylesheetfile>${basedir}/src/javadoc/stylesheet.css</stylesheetfile>
<javadocDirectory>${basedir}/src/javadoc</javadocDirectory>
<docfilessubdirs>true</docfilessubdirs>
Expand All @@ -98,7 +100,6 @@ pageTracker._trackPageview();
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down

0 comments on commit 6129827

Please sign in to comment.