dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #30683
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 15596: add () and {} as alternative formats in field collection selector
------------------------------------------------------------
revno: 15596
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2014-06-09 12:26:26 +0200
message:
add () and {} as alternative formats in field collection selector
modified:
dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/filter/DefaultParserService.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/filter/DefaultParserService.java'
--- dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/filter/DefaultParserService.java 2014-06-06 07:40:49 +0000
+++ dhis-2/dhis-services/dhis-service-dxf2/src/main/java/org/hisp/dhis/dxf2/filter/DefaultParserService.java 2014-06-09 10:26:26 +0000
@@ -84,14 +84,14 @@
continue;
}
- if ( c.equals( "[" ) )
+ if ( c.equals( "[" ) || c.equals( "(" ) || c.equals( "{" ) )
{
prefixList.add( builder.toString() );
builder = new StringBuilder();
continue;
}
- if ( c.equals( "]" ) )
+ if ( c.equals( "]" ) || c.equals( ")" ) || c.equals( "}" ) )
{
if ( !builder.toString().isEmpty() )
{
@@ -124,7 +124,7 @@
return prefixes;
}
- @SuppressWarnings("unchecked")
+ @SuppressWarnings( "unchecked" )
private void putInMap( Map<String, Map> map, String path )
{
if ( StringUtils.isEmpty( path ) )