only whitespace

This commit is contained in:
Peter Hormanns 2014-12-04 16:03:37 +01:00
parent 0c7a4d8ac5
commit d8527b266a

View File

@ -22,16 +22,16 @@ public abstract class AbstractRemote implements IRemote {
protected abstract Class<? extends AbstractEntity> getEntityClass();
protected abstract void entity2map(Transaction tx, AbstractEntity entity, Map<String, Object> resultMap);
protected abstract void map2entity(Transaction tx, Map<String, Object> setParams, AbstractEntity entity) throws HSAdminException;
protected abstract void regularizeKeys(Map<String, String> whereParams);
public List<Map<String, Object>> search(String runAsUser, String ticket) throws HSAdminException {
return search(runAsUser, ticket, new HashMap<String, String>());
}
public List<Map<String, Object>> search(String runAsUser, String ticket,
Map<String, String> whereParams) throws HSAdminException {
String user = runAsUser;