migrated to Java 8

This commit is contained in:
jomu
2014-03-20 11:32:37 +00:00
parent bdb19377ed
commit 7e926effef
6 changed files with 62 additions and 67 deletions

View File

@ -15,20 +15,6 @@
<name>shared-configuration</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
@ -37,7 +23,6 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>

View File

@ -2,7 +2,9 @@ package de.muehlencord.shared.configuration;
/**
*
* @author jomu
* @param <T> the type of the parameter
* @param <V> the value of the parameter - must be the same class as the type class of the parameter
* @author joern@muehlencord.de
*/
public interface Configuration<T, V extends T> {