No effective change - javadoc warnings

This commit is contained in:
rbygrave
2014-11-26 23:08:01 +13:00
parent 2195d7ecbc
commit d55a7b26f8
3 changed files with 5 additions and 8 deletions
+2 -3
View File
@@ -233,7 +233,6 @@
</archive>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
@@ -241,7 +240,8 @@
<configuration>
<doctitle>Ebean 4</doctitle>
<overview>src/main/java/com/avaje/ebean/overview.html</overview>
<excludePackageNames>com.avaje.ebeaninternal.*:com.avaje.ebean.util</excludePackageNames>
<!-- <excludePackageNames>com.avaje.ebeaninternal.*:com.avaje.ebean.util</excludePackageNames> -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
@@ -253,7 +253,6 @@
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
@@ -8,8 +8,6 @@ import com.avaje.ebeaninternal.server.lib.DaemonThreadPool;
/**
* The default implementation of the BackgroundExecutor.
*
* @author rbygrave
*/
public class DefaultBackgroundExecutor implements SpiBackgroundExecutor {
@@ -20,7 +18,7 @@ public class DefaultBackgroundExecutor implements SpiBackgroundExecutor {
/**
* Construct the default implementation of BackgroundExecutor.
*
* @param mainPoolSize
* @param corePoolSize
* the core size of the thread pool.
* @param keepAliveSecs
* the time in seconds idle threads are keep alive
@@ -26,7 +26,7 @@ public interface MAdminAutofetchMBean {
/**
* This controls whether autoFetch is used when it has not
* been explicitly set on a query via {@link Query#setAutoFetch(boolean)}.
* been explicitly set on a query via {@link Query#setAutofetch(boolean)}.
*/
public String getMode();
@@ -36,7 +36,7 @@ public interface MAdminAutofetchMBean {
public String getModeOptions();
/**
* Set the auto fetch mode used when a query has not had {@link Query#setAutoFetch(boolean)}.
* Set the auto fetch mode used when a query has not had {@link Query#setAutofetch(boolean)}.
*/
public void setMode(String mode);