Browse Source

javadoc compile error modify

pull/2/head
qiaozhanwei 5 years ago
parent
commit
49944a4ff3
  1. 8
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/thread/ThreadUtils.java
  2. 3
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/HadoopUtils.java
  3. 2
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/Preconditions.java

8
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/thread/ThreadUtils.java

@ -130,10 +130,10 @@ public class ThreadUtils {
/** /**
* Wrapper over ScheduledThreadPoolExecutor * Wrapper over ScheduledThreadPoolExecutor
* @param threadName * @param threadName threadName
* @param corePoolSize * @param corePoolSize corePoolSize
* @param isDaemon * @param isDaemon isDaemon
* @return * @return ScheduledThreadPoolExecutor
*/ */
public static ScheduledExecutorService newThreadScheduledExecutor(String threadName, int corePoolSize, boolean isDaemon) { public static ScheduledExecutorService newThreadScheduledExecutor(String threadName, int corePoolSize, boolean isDaemon) {
ThreadFactory threadFactory = new ThreadFactoryBuilder() ThreadFactory threadFactory = new ThreadFactoryBuilder()

3
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/HadoopUtils.java

@ -425,10 +425,7 @@ public class HadoopUtils implements Closeable {
} }
/** /**
<<<<<<< HEAD
* get data hdfs path * get data hdfs path
=======
>>>>>>> remotes/upstream/dev
* @return data hdfs path * @return data hdfs path
*/ */
public static String getHdfsDataBasePath() { public static String getHdfsDataBasePath() {

2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/Preconditions.java

@ -75,7 +75,7 @@ public final class Preconditions {
* @param errorMessageArgs The arguments for the error message, to be inserted into the * @param errorMessageArgs The arguments for the error message, to be inserted into the
* message template for the {@code %s} placeholders. * message template for the {@code %s} placeholders.
* *
* @param <T> * @param <T> T
* @return The object reference itself (generically typed). * @return The object reference itself (generically typed).
*/ */
public static <T> T checkNotNull(T reference, public static <T> T checkNotNull(T reference,

Loading…
Cancel
Save