mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-05 04:25:29 -04:00
Fixed typo in doc.
This commit is contained in:
parent
280407d9c0
commit
529377aa01
@ -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));
|
||||
|
@ -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).
|
||||
|
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user