This is an automated email from the ASF dual-hosted git repository.

ifesdjeen pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-harry.git

commit 4a8e4e9077906bc14f6ac19a1aabf4b9ecdefd82
Author: Alex Petrov <oleksandr.pet...@gmail.com>
AuthorDate: Wed Nov 29 11:48:37 2023 +0100

    Fix typos found by Maven plugin
---
 harry-core/src/harry/concurrent/ExecutorFactory.java | 3 +--
 harry-core/src/harry/concurrent/WaitQueue.java       | 4 +++-
 harry-core/src/harry/generators/PCGFastPure.java     | 2 +-
 pom.xml                                              | 1 +
 4 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/harry-core/src/harry/concurrent/ExecutorFactory.java 
b/harry-core/src/harry/concurrent/ExecutorFactory.java
index 834d511..1581c17 100644
--- a/harry-core/src/harry/concurrent/ExecutorFactory.java
+++ b/harry-core/src/harry/concurrent/ExecutorFactory.java
@@ -68,7 +68,6 @@ public interface ExecutorFactory
      * @param interrupts flag to indicate whether to synchronize interrupts of 
the task execution thread
      *                   using the task's monitor this can be used to prevent 
interruption while performing
      *                   IO operations which forbid interrupted threads.
-     *                   See: {@link 
org.apache.cassandra.db.commitlog.AbstractCommitLogSegmentManager::start}
      * @return the new thread
      */
     Interruptible infiniteLoop(String name, Interruptible.Task task, 
InfiniteLoopExecutor.SimulatorSafe simulatorSafe, InfiniteLoopExecutor.Daemon 
daemon, InfiniteLoopExecutor.Interrupts interrupts);
@@ -152,4 +151,4 @@ public interface ExecutorFactory
             return threadGroup == null ? null : new ThreadGroup(threadGroup, 
name);
         }
     }
-}
\ No newline at end of file
+}
diff --git a/harry-core/src/harry/concurrent/WaitQueue.java 
b/harry-core/src/harry/concurrent/WaitQueue.java
index ab96dc5..75592a7 100644
--- a/harry-core/src/harry/concurrent/WaitQueue.java
+++ b/harry-core/src/harry/concurrent/WaitQueue.java
@@ -98,7 +98,9 @@ public interface WaitQueue
      */
     public void signalAll();
 
-    /** getWaiting() > 0 */
+    /**
+     *  getWaiting() GT 0
+     *  */
     public boolean hasWaiters();
 
     /** Return how many threads are waiting */
diff --git a/harry-core/src/harry/generators/PCGFastPure.java 
b/harry-core/src/harry/generators/PCGFastPure.java
index 9e438dc..caed276 100644
--- a/harry-core/src/harry/generators/PCGFastPure.java
+++ b/harry-core/src/harry/generators/PCGFastPure.java
@@ -25,7 +25,7 @@ package harry.generators;
  * https://github.com/imneme/pcg-c
  * https://github.com/imneme/pcg-cpp
  * <p>
- * Original library developed by Melissa O'Neill <one...@pcg-random.org>
+ * Original library developed by Melissa O'Neill (one...@pcg-random.org)
  */
 public class PCGFastPure
 {
diff --git a/pom.xml b/pom.xml
index be18760..c023367 100755
--- a/pom.xml
+++ b/pom.xml
@@ -63,6 +63,7 @@
         </profile>
     </profiles>
     <properties>
+        <skipTests>true</skipTests>
         <javac.target>1.8</javac.target>
         <harry.version>0.0.1-SNAPSHOT</harry.version>
         <jackson.version>2.11.3</jackson.version>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to