Author: tilman
Date: Tue Nov 25 16:23:38 2025
New Revision: 1929991
Log:
PDFBOX-5660: fix javadoc, as suggested by Valery Bokov; closes #347
Modified:
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
Modified:
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
==============================================================================
---
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
Tue Nov 25 16:02:15 2025 (r1929990)
+++
pdfbox/branches/2.0/pdfbox/src/main/java/org/apache/pdfbox/util/filetypedetector/FileTypeDetector.java
Tue Nov 25 16:23:38 2025 (r1929991)
@@ -24,13 +24,13 @@ import org.apache.pdfbox.util.Charsets;
/**
* @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
{
@@ -76,7 +76,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.