Skip to content

Commit 64254e6

Browse files
committed
Removed ExtendedTika class. The maxLength change made it into Tika 1.2, which we use now and was the reason of having this class.
1 parent ab15935 commit 64254e6

File tree

2 files changed

+4
-62
lines changed

2 files changed

+4
-62
lines changed

src/main/java/org/elasticsearch/plugin/mapper/attachments/tika/TikaExtended.java

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/main/java/org/elasticsearch/plugin/mapper/attachments/tika/TikaInstance.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,16 @@
2020
package org.elasticsearch.plugin.mapper.attachments.tika;
2121

2222

23+
import org.apache.tika.Tika;
24+
2325
/**
2426
*
2527
*/
2628
public class TikaInstance {
2729

28-
private static final TikaExtended tika = new TikaExtended();
30+
private static final Tika tika = new Tika();
2931

30-
public static TikaExtended tika() {
32+
public static Tika tika() {
3133
return tika;
3234
}
3335
}

0 commit comments

Comments
 (0)