Skip to content

Commit

Permalink
openhab#14 Move nested class AbortLongPolling to end of LongPolling c…
Browse files Browse the repository at this point in the history
…lass

Signed-off-by: Christian Oeing <[email protected]>
Signed-off-by: Gerd Zanker <[email protected]>
  • Loading branch information
coeing authored and GerdZanker committed Jan 7, 2021
1 parent 4eae5ba commit e22b730
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@
*/
@NonNullByDefault
public class LongPolling {
@SuppressWarnings("serial")
private class AbortLongPolling extends BoschSHCException {
}

private final Logger logger = LoggerFactory.getLogger(LongPolling.class);

private final Gson gson = new Gson();
Expand Down Expand Up @@ -200,4 +196,8 @@ private void onLongPollResponse(BoschHttpClient httpClient, String subscriptionI
// Execute next run.
this.executeLongPoll(httpClient, nextSubscriptionId);
}

@SuppressWarnings("serial")
private class AbortLongPolling extends BoschSHCException {
}
}

0 comments on commit e22b730

Please sign in to comment.