This commit is contained in:
Alessandro Pieve 2016-09-19 14:02:52 +00:00
parent 4366a5b5e5
commit 9b9a198d0c
1 changed files with 3 additions and 4 deletions

View File

@ -84,7 +84,6 @@ public class AccountingPersistenceQuery implements AccountingPersistenceBackendQ
jsonObject.put(key, 0); jsonObject.put(key, 0);
} }
} }
return jsonObject; return jsonObject;
} }
@ -171,8 +170,8 @@ public class AccountingPersistenceQuery implements AccountingPersistenceBackendQ
for(NumberedFilter nf : got.keySet()){ for(NumberedFilter nf : got.keySet()){
if(--count>=0 || limit<=0){ if(--count>=0 || limit<=0){
if(pad){ if(pad){
padMap(got.get(nf), temporalConstraint); padMap(got.get(nf), temporalConstraint);
} }
}else{ }else{
if(firstRemovalKey==null){ if(firstRemovalKey==null){
@ -279,7 +278,7 @@ public class AccountingPersistenceQuery implements AccountingPersistenceBackendQ
@Override @Override
public JSONObject getUsageValue(Class<? extends AggregatedRecord<?, ?>> clz, public JSONObject getUsageValue(Class<? extends AggregatedRecord<?, ?>> clz,
TemporalConstraint temporalConstraint, Filter applicant) TemporalConstraint temporalConstraint, Filter applicant)
throws Exception { throws Exception {
// TODO Auto-generated method stub // TODO Auto-generated method stub
return null; return null;
} }