From 7376a779160286467576049f3d407258e675e6cd Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Sat, 31 Oct 2020 12:23:21 +0100 Subject: [PATCH] Make constants private. --- org.argeo.entity.api/src/org/argeo/entity/EntityJcrUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.argeo.entity.api/src/org/argeo/entity/EntityJcrUtils.java b/org.argeo.entity.api/src/org/argeo/entity/EntityJcrUtils.java index f32c182..dfe3df7 100644 --- a/org.argeo.entity.api/src/org/argeo/entity/EntityJcrUtils.java +++ b/org.argeo.entity.api/src/org/argeo/entity/EntityJcrUtils.java @@ -9,13 +9,13 @@ public class EntityJcrUtils { * The name of a node which will be serialized as XML text, as per section 7.3.1 * of the JCR 2.0 specifications. */ - public final static String JCR_XMLTEXT = "jcr:xmltext"; + private final static String JCR_XMLTEXT = "jcr:xmltext"; /** * The name of a property which will be serialized as XML text, as per section * 7.3.1 of the JCR 2.0 specifications. */ - public final static String JCR_XMLCHARACTERS = "jcr:xmlcharacters"; + private final static String JCR_XMLCHARACTERS = "jcr:xmlcharacters"; /* * XML -- 2.30.2