We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org.eclipse.lyo.trs.client.util.ClientUtil#extractBaseFromRdfModel has a fall-though flow path:
org.eclipse.lyo.trs.client.util.ClientUtil#extractBaseFromRdfModel
if (ProviderUtil.isNotEmptySingletonArray(nextPageArray) && nextPageArray[0] instanceof Page) { nextPage = (Page) nextPageArray[0]; baseObj.setNextPage(nextPage); log.debug("finished extracting base from rdf model"); return baseObj; } log.debug("finished extracting base from rdf model"); // FIXME Andrew@2019-07-15: nulls return null;
In which the default value returned is null despite having a valid (last) page of the base.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
org.eclipse.lyo.trs.client.util.ClientUtil#extractBaseFromRdfModel
has a fall-though flow path:In which the default value returned is null despite having a valid (last) page of the base.
The text was updated successfully, but these errors were encountered: