clxstart opened a new pull request, #17892: URL: https://github.com/apache/iotdb/pull/17892
## Summary - Rename `IS_OBJECT_STORAGE` to `isObjectStorage` in `IoTDBDataBackTool.java` to comply with Java camelCase naming convention for non-constant mutable fields (SonarQube rule: field name should match `^[a-z][a-zA-Z0-9]*$`). ## Changes | Before | After | |--------|-------| | `static boolean IS_OBJECT_STORAGE = false;` | `static boolean isObjectStorage = false;` | | `IS_OBJECT_STORAGE = true;` | `isObjectStorage = true;` | | `if (IS_OBJECT_STORAGE)` | `if (isObjectStorage)` | No functional changes — purely a naming convention fix. Part of #17740 -- 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]
