Github user tillrohrmann commented on a diff in the pull request:

    https://github.com/apache/flink/pull/1434#discussion_r46850717
  
    --- Diff: 
flink-runtime/src/main/scala/org/apache/flink/runtime/jobmanager/JobManager.scala
 ---
    @@ -753,7 +841,11 @@ class JobManager(
        * @param jobInfo the job info
        * @param isRecovery Flag indicating whether this is a recovery or 
initial submission
        */
    -  private def submitJob(jobGraph: JobGraph, jobInfo: JobInfo, isRecovery: 
Boolean = false): Unit = {
    +  private def submitJob(
    +    jobGraph: JobGraph,
    +    jobInfo: JobInfo,
    +    isRecovery: Boolean = false): Unit = {
    --- End diff --
    
    two level indentation of parameters and one level indentation of return 
type:
    
    ```
    private def submitJob(
        a: B
        c: D)
      : R = {
    
    }
    ``` 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to