[
https://issues.apache.org/jira/browse/FLINK-7190?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16093280#comment-16093280
]
ASF GitHub Bot commented on FLINK-7190:
---------------------------------------
Github user zentol commented on the issue:
https://github.com/apache/flink/pull/4343
The switch statements can be modified to be checkstyle compliant with few
changes.
`NestedMethodAnalyzer#naryOperation`:
```
...
case INVOKESTATIC:
case INVOKESPECIAL:
case INVOKEVIRTUAL:
case INVOKEINTERFACE:
isStatic = insn.getOpCoed() == INVOKESTATIC;
...
```
`NestedMethodAnalyzer#copyOperation`:
```
...
case DUP2_X2:
if (isTagged(value) && tagged(value).isInput() &&
tagged(value).isCallByValue()) {
return tagged(value).copy();
} else {
return super.copyOperation(insn, value);
}
...
```
> Activate checkstyle flink-java/*
> --------------------------------
>
> Key: FLINK-7190
> URL: https://issues.apache.org/jira/browse/FLINK-7190
> Project: Flink
> Issue Type: Improvement
> Components: Build System
> Reporter: Dawid Wysakowicz
> Assignee: Dawid Wysakowicz
> Priority: Trivial
>
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)