This commit is contained in:
Lucio Lelii 2008-12-02 08:58:46 +00:00
parent 277190f99b
commit ea244d4b0e
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ public class IStoDBUtil {
try{
if (queryClient==null) queryClient= GHNContext.getImplementation(ISClient.class);
GCUBECollectionQuery query= queryClient.getQuery(GCUBECollectionQuery.class);
query.addGenericCondition("$result/Profile/IsUserCollection/string(@value) eq 'true']");
query.addGenericCondition("$result/Profile/IsUserCollection/string(@value) eq 'true'");
collectionList= queryClient.execute(query, scope);
System.out.println("collections "+ collectionList.size());
}catch(Exception e ){logger.error("Error queryng IS"); throw new GCUBEFault(e); }