tmvlad commented on code in PR #2926:
URL: https://github.com/apache/jackrabbit-oak/pull/2926#discussion_r3346865136
##########
oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/property/PropertyIndexEditorProvider.java:
##########
@@ -42,14 +51,33 @@ public class PropertyIndexEditorProvider implements
IndexEditorProvider {
public static final String TYPE = "property";
+ public static final String FT_GRANITE_63829 = "FT_GRANITE-63829";
+
@Reference
private MountInfoProvider mountInfoProvider =
Mounts.defaultMountInfoProvider();
+ @Nullable
+ private Feature feature;
+
+ @Activate
+ private void activate(BundleContext bundleContext) {
+ Whiteboard whiteboard = new OsgiWhiteboard(bundleContext);
+ this.feature = newFeature(FT_GRANITE_63829, whiteboard);
Review Comment:
I've seen a similar naming scheme used in other parts of the codebase and
went along with it. Thanks for the catch, I'll revise it.
--
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]