Java 6 compat

This commit is contained in:
mar-v-in 2015-04-13 23:49:44 +02:00
parent b49d1095fd
commit d7b18b0673
2 changed files with 7 additions and 4 deletions

View File

@ -6,14 +6,17 @@ buildscript {
classpath 'com.android.tools.build:gradle:1.1.3'
}
}
apply plugin: 'com.android.library'
apply from: 'gradle-mvn-push.gradle'
group = 'org.microg'
version = '1.2-SNAPSHOT'
android {
compileSdkVersion 22
buildToolsVersion "22.0.0"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
}
}
dependencies {
}

View File

@ -55,7 +55,7 @@ public class SafeParcelUtil {
if (object == null)
throw new NullPointerException();
Class clazz = object.getClass();
Map<Integer, Field> fieldMap = new HashMap<>();
Map<Integer, Field> fieldMap = new HashMap<Integer, Field>();
while (clazz != null) {
for (Field field : clazz.getDeclaredFields()) {
if (field.isAnnotationPresent(SafeParceled.class)) {