Set java target to 1.6

This commit is contained in:
Taro L. Saito 2011-08-01 18:26:07 +09:00
parent 8d49dddbba
commit 9e95185692
2 changed files with 2 additions and 3 deletions

View File

@ -63,8 +63,8 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
<configuration> <configuration>
<source>1.5</source> <source>1.6</source>
<target>1.5</target> <target>1.6</target>
</configuration> </configuration>
</plugin> </plugin>

View File

@ -196,7 +196,6 @@ public class SnappyLoader
e.printStackTrace(System.err); e.printStackTrace(System.err);
throw new SnappyError(SnappyErrorCode.FAILED_TO_LOAD_NATIVE_LIBRARY, e.getMessage()); throw new SnappyError(SnappyErrorCode.FAILED_TO_LOAD_NATIVE_LIBRARY, e.getMessage());
} }
} }
} }