diff --git a/akka-actor/src/main/java/akka/dispatch/AbstractNodeQueue.java b/akka-actor/src/main/java/akka/dispatch/AbstractNodeQueue.java index 5768e20987..9286d231e2 100644 --- a/akka-actor/src/main/java/akka/dispatch/AbstractNodeQueue.java +++ b/akka-actor/src/main/java/akka/dispatch/AbstractNodeQueue.java @@ -33,7 +33,7 @@ public abstract class AbstractNodeQueue extends AtomicReference next = tail.next(); if (next == null && get() != tail) { // if tail != head this is not going to change until consumer makes progress - // we can avoid reading the head and just spin on next until it shows the f**k up + // we can avoid reading the head and just spin on next until it shows up do { next = tail.next(); } while (next == null);