mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Merge branch 'master' of https://github.com/Alfresco/alfresco-data-model
This commit is contained in:
2
pom.xml
2
pom.xml
@@ -10,7 +10,7 @@
|
|||||||
<artifactId>alfresco-data-model</artifactId>
|
<artifactId>alfresco-data-model</artifactId>
|
||||||
<name>Alfresco Data Model</name>
|
<name>Alfresco Data Model</name>
|
||||||
<description>Alfresco Data Model classes</description>
|
<description>Alfresco Data Model classes</description>
|
||||||
<version>6.12-SNAPSHOT</version>
|
<version>6.13-SNAPSHOT</version>
|
||||||
|
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:https://github.com/Alfresco/alfresco-data-model.git</connection>
|
<connection>scm:git:https://github.com/Alfresco/alfresco-data-model.git</connection>
|
||||||
|
@@ -116,8 +116,9 @@ public class IntervalSet
|
|||||||
{
|
{
|
||||||
StringBuilder sb = new StringBuilder("");
|
StringBuilder sb = new StringBuilder("");
|
||||||
sb.append(startInclusive?"[":"<")
|
sb.append(startInclusive?"[":"<")
|
||||||
.append(start)
|
.append("\"").append(start).append("\"")
|
||||||
.append(" TO "+end)
|
.append(" TO ")
|
||||||
|
.append("\"").append(end).append("\"")
|
||||||
.append(endInclusive?"]":">");
|
.append(endInclusive?"]":">");
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user