aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/image/ImageFilter.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/awt/image/ImageFilter.java')
-rw-r--r--libjava/java/awt/image/ImageFilter.java13
1 files changed, 11 insertions, 2 deletions
diff --git a/libjava/java/awt/image/ImageFilter.java b/libjava/java/awt/image/ImageFilter.java
index b34bb7d9cd3..86bc0210a4b 100644
--- a/libjava/java/awt/image/ImageFilter.java
+++ b/libjava/java/awt/image/ImageFilter.java
@@ -81,9 +81,18 @@ public class ImageFilter implements ImageConsumer, Cloneable
*
* @see java.lang.Object#clone ()
*/
- public Object clone() throws CloneNotSupportedException
+ public Object clone()
{
- return (super.clone());
+ try
+ {
+ return super.clone();
+ }
+ catch (CloneNotSupportedException e)
+ {
+ // This should never happen as this class implements the
+ // Cloneable interface.
+ throw new InternalError ();
+ }
}
/**