fix line too long

This commit is contained in:
fmartelli 2014-07-12 16:24:04 +02:00
parent 05643bd2af
commit 2df9426bd3
1 changed files with 3 additions and 1 deletions

View File

@ -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();