Repository: kafka
Updated Branches:
  refs/heads/trunk 52a15d7c0 -> 962c378cc


HOTFIX: Fix header in ByteArrayConverter

Author: Ismael Juma <ism...@juma.me.uk>

Reviewers: Manikumar reddy O <manikumar.re...@gmail.com>

Closes #2690 from ijuma/fix-header-in-byte-array-converter


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/962c378c
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/962c378c
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/962c378c

Branch: refs/heads/trunk
Commit: 962c378cc6cdb178541155af419c24e463516a5d
Parents: 52a15d7
Author: Ismael Juma <ism...@juma.me.uk>
Authored: Wed Mar 15 14:46:17 2017 +0000
Committer: Ismael Juma <ism...@juma.me.uk>
Committed: Wed Mar 15 14:46:32 2017 +0000

----------------------------------------------------------------------
 .../kafka/connect/converters/ByteArrayConverter.java    | 12 ++++++------
 .../connect/converters/ByteArrayConverterTest.java      | 10 +++++-----
 2 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/962c378c/connect/runtime/src/main/java/org/apache/kafka/connect/converters/ByteArrayConverter.java
----------------------------------------------------------------------
diff --git 
a/connect/runtime/src/main/java/org/apache/kafka/connect/converters/ByteArrayConverter.java
 
b/connect/runtime/src/main/java/org/apache/kafka/connect/converters/ByteArrayConverter.java
index f592624..05dff27 100644
--- 
a/connect/runtime/src/main/java/org/apache/kafka/connect/converters/ByteArrayConverter.java
+++ 
b/connect/runtime/src/main/java/org/apache/kafka/connect/converters/ByteArrayConverter.java
@@ -1,19 +1,19 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
+ * contributor license agreements. See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
+ * the License. You may obtain a copy of the License at
  *
- * http://www.apache.org/licenses/LICENSE-2.0
+ *    http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- **/
+ */
 
 package org.apache.kafka.connect.converters;
 
@@ -49,4 +49,4 @@ public class ByteArrayConverter implements Converter {
         return new SchemaAndValue(Schema.OPTIONAL_BYTES_SCHEMA, value);
     }
 
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/kafka/blob/962c378c/connect/runtime/src/test/java/org/apache/kafka/connect/converters/ByteArrayConverterTest.java
----------------------------------------------------------------------
diff --git 
a/connect/runtime/src/test/java/org/apache/kafka/connect/converters/ByteArrayConverterTest.java
 
b/connect/runtime/src/test/java/org/apache/kafka/connect/converters/ByteArrayConverterTest.java
index e0d533f..b0a603a 100644
--- 
a/connect/runtime/src/test/java/org/apache/kafka/connect/converters/ByteArrayConverterTest.java
+++ 
b/connect/runtime/src/test/java/org/apache/kafka/connect/converters/ByteArrayConverterTest.java
@@ -1,19 +1,19 @@
-/**
+/*
  * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
+ * contributor license agreements. See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
  * The ASF licenses this file to You under the Apache License, Version 2.0
  * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
+ * the License. You may obtain a copy of the License at
  *
- * http://www.apache.org/licenses/LICENSE-2.0
+ *    http://www.apache.org/licenses/LICENSE-2.0
  *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- **/
+ */
 
 package org.apache.kafka.connect.converters;
 

Reply via email to