RM-7068 updates from review

This commit is contained in:
Sara Aspery
2019-11-28 01:45:40 +00:00
parent 3c95f9c4f8
commit a0868776d5
2 changed files with 2 additions and 2 deletions

View File

@@ -574,7 +574,7 @@ public class HoldServiceImpl extends ServiceBaseImpl
{
StringBuilder sb = new StringBuilder();
Stream<String> stream1 = heldNames.stream();
stream1.limit(MAX_HELD_ITEMS_LIST_SIZE).forEach((name) -> {
stream1.limit(MAX_HELD_ITEMS_LIST_SIZE).forEach(name -> {
sb.append("\n ");
sb.append("'");
sb.append(name);