Skip to content

Commit

Permalink
push off removing digest option in tika-app and tika-server to 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tballison committed Jan 30, 2023
1 parent bff14f3 commit d0cf47f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tika-app/src/main/java/org/apache/tika/cli/TikaCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ private void configure() throws TikaException, IOException, SAXException {
if (digester != null) {
parser = new DigestingParser(parser, digester);
LOG.info("As of Tika 2.5.0, you can set the digester via the AutoDetectParserConfig in " +
"tika-config.xml. We plan to remove this commandline option in 2.7.0");
"tika-config.xml. We plan to remove this commandline option in 2.8.0");
}
}
detector = config.getDetector();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ public String getDigest() {

public void setDigest(String digest) {
LOG.info("As of Tika 2.5.0, you can set the digester via the AutoDetectParserConfig in " +
"tika-config.xml. We plan to remove this commandline option in 2.7.0");
"tika-config.xml. We plan to remove this commandline option in 2.8.0");
this.digest = digest;
}

Expand Down

0 comments on commit d0cf47f

Please sign in to comment.