Skip to content

Commit

Permalink
REPO-1066: upgrade Tika 1.17
Browse files Browse the repository at this point in the history
Downgrade ASM to 3.3.1 (Compatible with CMIS 1.0 libs we use now in ACS
6.0)

MNT-11350 - Upgrade of Tika to 1.6-SNAPSHOT

Downgrade ASM 4.1 to ASM 3.1
See also MNT-9291
  • Loading branch information
skopf authored and Andrei Rebegea committed Jan 30, 2018
1 parent 051b95c commit 530a989
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tika-parsers/pom.xml
Expand Up @@ -219,9 +219,9 @@
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<groupId>asm</groupId>
<artifactId>asm</artifactId>
<version>5.0.4</version>
<version>3.3.1</version>
</dependency>
<dependency>
<groupId>com.googlecode.mp4parser</groupId>
Expand Down
Expand Up @@ -38,7 +38,7 @@
* Class visitor that generates XHTML SAX events to describe the
* contents of the visited class.
*/
class XHTMLClassVisitor extends ClassVisitor {
class XHTMLClassVisitor implements ClassVisitor {

private final XHTMLContentHandler xhtml;

Expand All @@ -49,7 +49,6 @@ class XHTMLClassVisitor extends ClassVisitor {
private String packageName;

public XHTMLClassVisitor(ContentHandler handler, Metadata metadata) {
super(Opcodes.ASM5);
this.xhtml = new XHTMLContentHandler(handler, metadata);
this.metadata = metadata;
}
Expand Down

0 comments on commit 530a989

Please sign in to comment.