Author: tilman
Date: Tue Nov 25 16:23:46 2025
New Revision: 1929993
Log:
PDFBOX-5660: fix javadoc, as suggested by Valery Bokov; closes #347
Modified:
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
Modified:
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
==============================================================================
---
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
Tue Nov 25 16:23:42 2025 (r1929992)
+++
pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
Tue Nov 25 16:23:46 2025 (r1929993)
@@ -23,13 +23,13 @@ import java.nio.charset.StandardCharsets
/**
* @author Drew Noakes
*
- * code taken from https://github.com/drewnoakes/metadata-extractor
+ * code taken from <a
href="https://github.com/drewnoakes/metadata-extractor">metadata-extractor</a>
*
* 2016-01-04
*
* latest commit number 73f1a48
*
- * Examines the a file's first bytes and estimates the file's type.
+ * Examines the file's first bytes and estimates the file's type.
*/
public final class FileTypeDetector
{
@@ -75,7 +75,7 @@ public final class FileTypeDetector
}
/**
- * Examines the a file's first bytes and estimates the file's type.
+ * Examines the file's first bytes and estimates the file's type.
* <p>
* Requires a {@link BufferedInputStream} in order to mark and reset the
stream to the position
* at which it was provided to this method once completed.