1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Changed a += of a null string back to the appropriate = sign.

This commit is contained in:
Brock Tice 2008-11-03 07:14:31 +00:00
parent 734606f261
commit c1ad8cffaa

View File

@ -303,7 +303,7 @@ public class ImapStore extends Store {
private boolean mExists;
public ImapFolder(String name) {
this.mName += name;
this.mName = name;
}
public String getPrefixedName() {