misunderstood what it was looking for

This commit is contained in:
Vincent Toms 2019-02-20 11:20:15 -05:00
parent 711d59967f
commit 567748858f

View file

@ -15,16 +15,5 @@ public class JsonSendableMessage {
}
String message;
public void setAttachments(List<String> attachments) {
if ( attachments == null ) {
return;
}
this.attachments = attachments.stream()
.map(i -> new String(Base64.getDecoder().decode(i)))
.collect(Collectors.toList());
}
List<String> attachments;
}