Commit c68c712e by Michael Koch Committed by Michael Koch

2003-02-15 Michael Koch <konqueror@gmx.de>

	* java/awt/datatransfer/DataFlavor.java
	(isRepresentationClassByteBuffer): Removed try-catch block.
	(isRepresentationClassCharBuffer): Removed try-catch block.
	(isRepresentationClassReader): Removed try-catch block.

From-SVN: r62935
parent a5915965
2003-02-15 Michael Koch <konqueror@gmx.de>
* java/awt/datatransfer/DataFlavor.java
(isRepresentationClassByteBuffer): Removed try-catch block.
(isRepresentationClassCharBuffer): Removed try-catch block.
(isRepresentationClassReader): Removed try-catch block.
2003-02-15 Jesse Rosenstock <jmr@ugcs.caltech.edu>
* java/nio/charset/Charset.java
......
......@@ -1009,14 +1009,7 @@ public Reader getReaderForText(Transferable transferable)
*/
public boolean isRepresentationClassByteBuffer ()
{
try
{
return ByteBuffer.class.isAssignableFrom (representationClass);
}
catch (ClassNotFoundException e)
{
return false;
}
return ByteBuffer.class.isAssignableFrom (representationClass);
}
/**
......@@ -1027,14 +1020,7 @@ public Reader getReaderForText(Transferable transferable)
*/
public boolean isRepresentationClassCharBuffer ()
{
try
{
return CharBuffer.class.isAssignableFrom (representationClass);
}
catch (ClassNotFoundException e)
{
return false;
}
return CharBuffer.class.isAssignableFrom (representationClass);
}
/**
......@@ -1045,14 +1031,7 @@ public Reader getReaderForText(Transferable transferable)
*/
public boolean isRepresentationClassReader ()
{
try
{
return Reader.class.isAssignableFrom (representationClass);
}
catch (ClassNotFoundException e)
{
return false;
}
return Reader.class.isAssignableFrom (representationClass);
}
} // class DataFlavor
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment