mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-06 04:55:30 -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$
|
* @version $Id: QTBMPDecompressor.java,v 1.0 Feb 16, 2009 9:18:28 PM haraldk Exp$
|
||||||
*/
|
*/
|
||||||
final class QTBMPDecompressor extends QTDecompressor {
|
final class QTBMPDecompressor extends QTDecompressor {
|
||||||
|
|
||||||
public boolean canDecompress(final QuickTime.ImageDesc pDescription) {
|
public boolean canDecompress(final QuickTime.ImageDesc pDescription) {
|
||||||
return QuickTime.VENDOR_APPLE.equals(pDescription.compressorVendor) && "WRLE".equals(pDescription.compressorIdentifer)
|
return QuickTime.VENDOR_APPLE.equals(pDescription.compressorVendor) && "WRLE".equals(pDescription.compressorIdentifer)
|
||||||
&& "bmp ".equals(idString(pDescription.extraDesc, 4));
|
&& "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$
|
* @version $Id: QTDecompressor.java,v 1.0 Feb 16, 2009 7:21:27 PM haraldk Exp$
|
||||||
*/
|
*/
|
||||||
abstract class QTDecompressor {
|
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.
|
* data described by the given image description.
|
||||||
*
|
*
|
||||||
* @param pDescription the image description ({@code 'idsc'} Atom).
|
* @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$
|
* @version $Id: TestPICTClippingApp.java,v 1.0 Feb 16, 2009 3:05:16 PM haraldk Exp$
|
||||||
*/
|
*/
|
||||||
public class TestPICTClippingApp {
|
public class TestPICTClippingApp {
|
||||||
|
|
||||||
public static void main(final String[] pArgs) {
|
public static void main(final String[] pArgs) {
|
||||||
SwingUtilities.invokeLater(new Runnable() {
|
SwingUtilities.invokeLater(new Runnable() {
|
||||||
public void run() {
|
public void run() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user