Author: tilman
Date: Tue Nov 25 15:25:36 2025
New Revision: 1929982
Log:
PDFBOX-5660: fix typo, as suggested by Valery Bokov; closes #350
Modified:
pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/ui/OSXAdapter.java
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/image/PDImage.java
Modified:
pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/ui/OSXAdapter.java
==============================================================================
---
pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/ui/OSXAdapter.java
Tue Nov 25 13:46:18 2025 (r1929981)
+++
pdfbox/branches/2.0/debugger/src/main/java/org/apache/pdfbox/debugger/ui/OSXAdapter.java
Tue Nov 25 15:25:36 2025 (r1929982)
@@ -115,7 +115,7 @@ public class OSXAdapter implements Invoc
}
// Pass this method an Object and Method equipped to perform application
shutdown logic
- // The method passed should return a boolean stating whether or not the
quit should occur
+ // The method passed should return a boolean stating whether the quit
should occur
public static void setQuitHandler(final Object target, final Method
quitHandler)
{
if (isMinJdk9())
Modified:
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/image/PDImage.java
==============================================================================
---
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/image/PDImage.java
Tue Nov 25 13:46:18 2025 (r1929981)
+++
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/image/PDImage.java
Tue Nov 25 15:25:36 2025 (r1929982)
@@ -69,7 +69,7 @@ public interface PDImage extends COSObje
* Use this method if you want to extract the image without loosing any
color information, as
* no color conversion will be performed.
*
- * You can alwoys use {@link #getRawRaster()}, if you want to access the
raw data even if
+ * You can always use {@link #getRawRaster()}, if you want to access the
raw data even if
* no matching java.awt.ColorSpace exists
*
* @return the raw image with a java.awt.ColorSpace or null
@@ -141,7 +141,7 @@ public interface PDImage extends COSObje
boolean isStencil();
/**
- * Sets whether or not the image is a stencil.
+ * Sets whether the image is a stencil.
* This corresponds to the {@code ImageMask} entry in the image stream's
dictionary.
* @param isStencil True to make the image a stencil.
*/