fix line too long
This commit is contained in:
parent
05643bd2af
commit
2df9426bd3
|
@ -169,7 +169,9 @@ final class OperationInvocationHandler extends AbstractInvocationHandler impleme
|
||||||
while (boundOp == null && baseType != null) {
|
while (boundOp == null && baseType != null) {
|
||||||
// json minimal/none metadata doesn't return operations for entity, so here try creating it from Edm:
|
// json minimal/none metadata doesn't return operations for entity, so here try creating it from Edm:
|
||||||
EdmAction action = this.getClient().getCachedEdm().getBoundAction(
|
EdmAction action = this.getClient().getCachedEdm().getBoundAction(
|
||||||
new FullQualifiedName(targetFQN.getNamespace(), operation.name()), baseType.getFullQualifiedName(), false);
|
new FullQualifiedName(targetFQN.getNamespace(), operation.name()),
|
||||||
|
baseType.getFullQualifiedName(),
|
||||||
|
false);
|
||||||
|
|
||||||
if (action != null) {
|
if (action != null) {
|
||||||
boundOp = new ODataOperation();
|
boundOp = new ODataOperation();
|
||||||
|
|
Loading…
Reference in New Issue