Skip to content

Commit d5153e0

Browse files
committed
* Fixes some issues to have build under JDK 11
1 parent 0158fda commit d5153e0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

magiclib/pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
</contributors>
5353
<properties>
5454
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
55-
<maven.compiler.source>1.4</maven.compiler.source>
56-
<maven.compiler.target>1.4</maven.compiler.target>
55+
<maven.compiler.source>1.6</maven.compiler.source>
56+
<maven.compiler.target>1.6</maven.compiler.target>
5757
</properties>
5858

5959
<dependencies>
@@ -144,6 +144,7 @@
144144
<configuration>
145145
<!-- Output location of api documentation -->
146146
<outputDirectory>${project.build.directory}/apidocs</outputDirectory>
147+
<detectJavaApiLink>false</detectJavaApiLink>
147148
</configuration>
148149
<executions>
149150
<execution>

magiclib/src/main/java/org/magicdb/magic/IdentifierMagicDB.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* identifying data from both Input streams that supports {@link InputStream#mark(int) }
3838
* or {@link RandomAccessFile}
3939
*
40-
* <p>The following steps should be used to use this library
40+
* <p>The following steps should be used to use this library</p>
4141
* <ul>
4242
* <li>Call one of the constructors to create an instance of the class.</li>
4343
* <li>Call {@link #initLibrary()} to parse the magic text file database </li>
@@ -46,7 +46,6 @@
4646
* <li>Call {@link #doneLibrary()} to free allocated resources</li>
4747
*
4848
* </ul>
49-
* </p>
5049
*
5150
*/
5251
public class IdentifierMagicDB

0 commit comments

Comments
 (0)