Skip to content

Commit e0e11d4

Browse files
committed
Small naming improvement
1 parent 5c7e96f commit e0e11d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/hivemq/client/internal/mqtt/handler/publish/incoming/MqttIncomingPublishFlows.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ void findMatching(final @NotNull MqttStatefulPublishWithFlows publishWithFlows)
131131
}
132132

133133
private static void add(
134-
final @NotNull MqttStatefulPublishWithFlows matchingPublishFlows,
134+
final @NotNull MqttStatefulPublishWithFlows publishWithFlows,
135135
final @Nullable HandleList<MqttGlobalIncomingPublishFlow> globalFlows) {
136136

137137
if (globalFlows != null) {
138138
for (Handle<MqttGlobalIncomingPublishFlow> h = globalFlows.getFirst(); h != null; h = h.getNext()) {
139-
matchingPublishFlows.add(h.getElement());
139+
publishWithFlows.add(h.getElement());
140140
}
141141
}
142142
}

0 commit comments

Comments
 (0)