anubhavio opened a new pull request, #5917: URL: https://github.com/apache/fineract/pull/5917
## Description Removes auto-generated TODO stub comments left behind by IDEs across multiple modules. These comments were inserted automatically during code generation and add no value — the implementations they reference are already complete. ### Changes - **CalendarUtils.java** — Removed `// TODO Auto-generated catch block` from two catch blocks. Both blocks already have proper error logging via `log.error()`. - **GroupRole.java** — Removed `// TODO Auto-generated constructor stub` from the no-arg constructor. The constructor body is intentionally empty as required by JPA. - **ExternalServicesPropertiesReadPlatformServiceImpl.java** — Removed `// TODO Auto-generated method stub` from `getSMTPCredentials()`. The method is fully implemented. - **InvalidClientStateTransitionException.java** — Removed `// TODO Auto-generated constructor stub`. The constructor delegates correctly to `super()` and is complete. - **ClientFamilyMembersWritePlatformServiceImpl.java** — Removed `// TODO Auto-generated catch block` from a catch block that already logs the exception properly. No logic has been added, removed, or modified. This is a cleanup-only change. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
