TEZ-3505. Move license to the file header for TezBytesWritableSerialization (darion yaphet via jeagles)
Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/bebbfa4a Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/bebbfa4a Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/bebbfa4a Branch: refs/heads/TEZ-3334 Commit: bebbfa4aa96dc67e62ff7a4fc989f9fe24c61052 Parents: d0bafce Author: Jonathan Eagles <[email protected]> Authored: Thu Nov 3 16:45:51 2016 -0500 Committer: Jonathan Eagles <[email protected]> Committed: Thu Nov 3 16:45:51 2016 -0500 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ .../library/common/serializer/TezBytesWritableSerialization.java | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/bebbfa4a/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 58a3346..2ee8026 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,6 +7,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3505. Move license to the file header for TezBytesWritableSerialization TEZ-3486. COMBINE_OUTPUT_RECORDS/COMBINE_INPUT_RECORDS are not correct TEZ-3247. Add more unit test coverage for container reuse. TEZ-3215. Support for MultipleOutputs. @@ -140,6 +141,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3505. Move license to the file header for TezBytesWritableSerialization TEZ-3486. COMBINE_OUTPUT_RECORDS/COMBINE_INPUT_RECORDS are not correct TEZ-3097. Flaky test: TestCommit.testDAGCommitStartedEventFail_OnDAGSuccess. TEZ-3437. Improve synchronization and the progress report behavior for Inputs from TEZ-3317. @@ -642,6 +644,7 @@ INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-3505. Move license to the file header for TezBytesWritableSerialization TEZ-3486. COMBINE_OUTPUT_RECORDS/COMBINE_INPUT_RECORDS are not correct TEZ-3437. Improve synchronization and the progress report behavior for Inputs from TEZ-3317. TEZ-3317. Speculative execution starts too early due to 0 progress. http://git-wip-us.apache.org/repos/asf/tez/blob/bebbfa4a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/common/serializer/TezBytesWritableSerialization.java ---------------------------------------------------------------------- diff --git a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/common/serializer/TezBytesWritableSerialization.java b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/common/serializer/TezBytesWritableSerialization.java index e6da0a4..7716c59 100644 --- a/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/common/serializer/TezBytesWritableSerialization.java +++ b/tez-runtime-library/src/main/java/org/apache/tez/runtime/library/common/serializer/TezBytesWritableSerialization.java @@ -1,5 +1,3 @@ -package org.apache.tez.runtime.library.common.serializer; - /** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file @@ -18,6 +16,8 @@ package org.apache.tez.runtime.library.common.serializer; * limitations under the License. */ +package org.apache.tez.runtime.library.common.serializer; + import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.hadoop.classification.InterfaceAudience.Public;
