Reviewed commit for FS#34 after merge
This commit is contained in:
parent
5fcd69c68b
commit
a2fe9f151a
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue