Skip to content

Commit

Permalink
Fix/sse (#117)
Browse files Browse the repository at this point in the history
* Fix: 오류 수정

* Fix: 구독 목록 불러오기 수정

* Fix: 메소드 중복 수정
  • Loading branch information
flowerdonk authored Aug 16, 2023
1 parent a6d3292 commit 273bf46
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,4 @@ public void deleteAllEventCacheByUserId(String userId) {
});
}

public void deleteAllEventCacheByUserId(String userId) {
eventCache.forEach((key, emitter) -> {
if (key.startsWith(userId)) {
eventCache.remove(key);
}
});
}

}

0 comments on commit 273bf46

Please sign in to comment.