Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Won't Fix
-
None
-
None
Description
The HMSPathsDumper class has the following code:
if (child.getAuthzObjs().size() != 0) { for (String authzObj: child.getAuthzObjs()) { Set<Entry> paths = authzObjToPath.get(authzObj); if (paths == null) { paths = new HashSet<Entry>(); } paths.add(child); } }
Note that local var paths is created inside the loop and never used, so this piece of code is completely useless.
Attachments
Issue Links
- is duplicated by
-
SENTRY-1752 HMSFollower gets stuck once it fails to process a notification event
- Resolved