Method runSELECTQuery(String, null) is undefined for the type IDependencyQueryClient at RTC 6
I need to recompile the following code and the method "runSELECTQuery(String, null)" no longer exists, how can I replace it?
IDependencyQueryClient queryClient = ClientFactory
.getDependencyQueryClient(fTeamRepository);
List<SelectResult> results = null;
try {
SelectResultFeedParser parser = new SelectResultFeedParser();
results = parser
.parse(new ByteArrayInputStream(
queryClient
.runSELECTQuery(
getLogicalNameQuery(logicalNames, data.getDestWorkspace().getName()),
null).getBytes("UTF-8"))); //$NON-NLS-1$