Skip to content

Commit

Permalink
[hotfix] [quickstarts] Fix header and package declaration order.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanEwen committed Feb 26, 2018
1 parent be2ecac commit 78bf90d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package ${package};

/**
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
Expand All @@ -18,6 +16,8 @@
* limitations under the License.
*/

package ${package};

import org.apache.flink.api.java.ExecutionEnvironment;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package ${package};

/**
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
Expand All @@ -18,6 +16,8 @@
* limitations under the License.
*/

package ${package};

import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package ${package}

/**
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
Expand All @@ -18,6 +16,8 @@ package ${package}
* limitations under the License.
*/

package ${package}

import org.apache.flink.api.scala._

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
package ${package}

/**
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
Expand All @@ -18,6 +16,8 @@ package ${package}
* limitations under the License.
*/

package ${package}

import org.apache.flink.streaming.api.scala._

/**
Expand Down

0 comments on commit 78bf90d

Please sign in to comment.