]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed exception message.
authorPeter Bernard West <pbwest@apache.org>
Thu, 3 Oct 2002 03:29:02 +0000 (03:29 +0000)
committerPeter Bernard West <pbwest@apache.org>
Thu, 3 Oct 2002 03:29:02 +0000 (03:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@195278 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/datastructs/SyncedCircularBuffer.java

index 5df3f0dfe9378dbd73b2a365dabd7169fddc26e5..cc8291518ca33470ae02802bc9e60848842ddfb8 100644 (file)
@@ -99,7 +99,7 @@ public class SyncedCircularBuffer {
         synchronized (this) {
             Object obj;
             if (Thread.interrupted()) {
-                throw new InterruptedException("Producer interrupted");
+                throw new InterruptedException("Consumer interrupted");
             }
             if (pushBackBuf != null) {
                 obj = pushBackBuf;