diff options
Diffstat (limited to 'libjava/classpath/javax/management/remote/NotificationResult.java')
-rw-r--r-- | libjava/classpath/javax/management/remote/NotificationResult.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/javax/management/remote/NotificationResult.java b/libjava/classpath/javax/management/remote/NotificationResult.java index c0b2d9ba1a6..09945f06ee7 100644 --- a/libjava/classpath/javax/management/remote/NotificationResult.java +++ b/libjava/classpath/javax/management/remote/NotificationResult.java @@ -101,14 +101,14 @@ public class NotificationResult * <code>null</code>. */ public NotificationResult(long startSeqNumber, long nextSeqNumber, - TargetedNotification[] notifications) + TargetedNotification[] notifications) { if (startSeqNumber < 0) throw new IllegalArgumentException("Starting sequence number is " + - "less than 0."); + "less than 0."); if (nextSeqNumber < 0) throw new IllegalArgumentException("Next sequence number is " + - "less than 0."); + "less than 0."); if (notifications == null) throw new IllegalArgumentException("The array of notifications is null."); earliestSequenceNumber = startSeqNumber; @@ -158,7 +158,7 @@ public class NotificationResult { return getClass().getName() + "[earliestSequenceNumber=" + earliestSequenceNumber + - ",nextSequenceNumber=" + nextSequenceNumber + + ",nextSequenceNumber=" + nextSequenceNumber + ",targetedNotifications=" + targetedNotifications + "]"; } |