Reviewed commit for FS#34 after merge

This commit is contained in:
steckbrief 2016-02-24 12:24:46 +01:00
parent 5fcd69c68b
commit a2fe9f151a
2 changed files with 2 additions and 2 deletions

View file

@ -470,7 +470,7 @@ public class Message extends AbstractEntity {
}
public String getMergedBody() {
StringBuilder body = new StringBuilder(this.body.trim());
StringBuilder body = new StringBuilder(this.body);
Message current = this;
while(current.mergeable(current.next())) {
current = current.next();

View file

@ -159,7 +159,7 @@ public class ServiceDiscoveryResult {
}
public String getVer() {
return new String(Base64.encode(this.ver, Base64.DEFAULT)).trim();
return new String(Base64.encode(this.ver, Base64.DEFAULT));
}
public ServiceDiscoveryResult(Cursor cursor) throws JSONException {