Fixed typo in doc.

This commit is contained in:
Harald Kuhr 2011-12-21 11:01:35 +01:00
parent 280407d9c0
commit 529377aa01
3 changed files with 1 additions and 4 deletions

View File

@ -43,7 +43,6 @@ import java.io.*;
* @version $Id: QTBMPDecompressor.java,v 1.0 Feb 16, 2009 9:18:28 PM haraldk Exp$
*/
final class QTBMPDecompressor extends QTDecompressor {
public boolean canDecompress(final QuickTime.ImageDesc pDescription) {
return QuickTime.VENDOR_APPLE.equals(pDescription.compressorVendor) && "WRLE".equals(pDescription.compressorIdentifer)
&& "bmp ".equals(idString(pDescription.extraDesc, 4));

View File

@ -40,9 +40,8 @@ import java.io.InputStream;
* @version $Id: QTDecompressor.java,v 1.0 Feb 16, 2009 7:21:27 PM haraldk Exp$
*/
abstract class QTDecompressor {
/**
* Returns wether this decompressor is capable of decompressing the image
* Returns whether this decompressor is capable of decompressing the image
* data described by the given image description.
*
* @param pDescription the image description ({@code 'idsc'} Atom).

View File

@ -33,7 +33,6 @@ import java.util.concurrent.Executors;
* @version $Id: TestPICTClippingApp.java,v 1.0 Feb 16, 2009 3:05:16 PM haraldk Exp$
*/
public class TestPICTClippingApp {
public static void main(final String[] pArgs) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {