Issue 138: Crash on application start

This commit is contained in:
Kevin Gaudin 2012-10-12 00:27:13 +02:00
parent 0af509b959
commit 9eef0d0f50
3 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -2,3 +2,5 @@
.project
.settings
target
pom.xml.releaseBackup
release.properties

View File

@ -7,7 +7,7 @@
</parent>
<groupId>ch.acra</groupId>
<artifactId>acra</artifactId>
<version>4.4.0-SNAPSHOT</version>
<version>4.3.1-SNAPSHOT</version>
<name>Application Crash Report for Android</name>

View File

@ -129,7 +129,7 @@ public final class ConfigurationCollector {
result.append(fieldName).append('=');
if (f.getType().equals(int.class)) {
result.append(getFieldValueName(conf, f));
} else {
} else if(f.get(conf) != null){
result.append(f.get(conf).toString());
}
result.append('\n');