Change summary
src/main/java/eu/siacs/conversations/entities/Message.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Detailed changes
@@ -802,7 +802,7 @@ public class Message extends AbstractEntity implements AvatarService.Avatarable
if (this.transferable != null) {
fileParams.size = this.transferable.getFileSize();
}
- String parts[] = body == null ? new String[0] : body.split("\\|");
+ final String[] parts = body == null ? new String[0] : body.split("\\|");
switch (parts.length) {
case 1:
try {