Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.9, 1.0, 1.0.1, 1.1, 1.1.1, 1.2.1, 1.2.2, 1.2.3, 1.3, 1.3.1, 1.3.3
-
None
Description
The ServerQuery sould use the Factory for creating ServerQueryResult.
Siehe the method ServerQuery.execute():
public RemoteQueryResult execute() throws RepositoryException, RemoteException { return new ServerQueryResult(query.execute(), getFactory()); }
it should be:
public RemoteQueryResult execute() throws RepositoryException, RemoteException { return getFactory().getRemoteQueryResult(this.query.execute()); }