Skip to content

Commit 6f90a97

Browse files
author
Lloyd Watkin
committed
Simplify :)
1 parent 77424cb commit 6f90a97

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • src/main/java/org/buddycloud/channelserver/packetprocessor/iq/namespace/pubsub/get

src/main/java/org/buddycloud/channelserver/packetprocessor/iq/namespace/pubsub/get/UserItemsGet.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,11 @@ private boolean parseRsmElement() {
104104
.getTextTrim());
105105
} catch (IllegalArgumentException e) {
106106
LOGGER.error(e);
107-
createExtendedErrorReply(Type.modify, Condition.bad_request, null, null,
108-
"Could not parse the 'after' id: " + after.getTextTrim());
107+
createExtendedErrorReply(
108+
Type.modify,
109+
Condition.bad_request,
110+
"Could not parse the 'after' id: "
111+
+ after.getTextTrim());
109112
return false;
110113
}
111114
}

0 commit comments

Comments
 (0)