diff options
Diffstat (limited to 'libjava/classpath/javax/sound/sampled/LineEvent.java')
-rw-r--r-- | libjava/classpath/javax/sound/sampled/LineEvent.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/javax/sound/sampled/LineEvent.java b/libjava/classpath/javax/sound/sampled/LineEvent.java index dd4a9ae..43a184c 100644 --- a/libjava/classpath/javax/sound/sampled/LineEvent.java +++ b/libjava/classpath/javax/sound/sampled/LineEvent.java @@ -1,4 +1,4 @@ -/* +/* Copyright (C) 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -153,15 +153,15 @@ public class LineEvent extends EventObject public String toString() { return ("type=" + type + "; framePosition=" + framePosition - + "line=" + line); + + "line=" + line); } - + private void readObject(ObjectInputStream ois) throws IOException { throw new NotSerializableException("LineEvent is not serializable"); } - + private void writeObject(ObjectOutputStream oos) throws IOException { |