You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/11/23 18:26:35 UTC

[arrow] branch master updated: ARROW-1047: [Java] [FollowUp] Change ArrowMagic to be non-public class

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 6ec4f34  ARROW-1047: [Java] [FollowUp] Change ArrowMagic to be non-public class
6ec4f34 is described below

commit 6ec4f343ba5bff628d397a7441852b5603dc7488
Author: Li Jin <ic...@gmail.com>
AuthorDate: Thu Nov 23 13:26:30 2017 -0500

    ARROW-1047: [Java] [FollowUp] Change ArrowMagic to be non-public class
    
    Move ArrowMagic from vector.ipc to vector.ipc.message package.
    
    Author: Li Jin <ic...@gmail.com>
    
    Closes #1349 from icexelloss/ARROW-1047-followup and squashes the following commits:
    
    0b5df959 [Li Jin] Change ArrowMagic to be non public class
---
 java/vector/src/main/java/org/apache/arrow/vector/ipc/ArrowMagic.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/java/vector/src/main/java/org/apache/arrow/vector/ipc/ArrowMagic.java b/java/vector/src/main/java/org/apache/arrow/vector/ipc/ArrowMagic.java
index a9310a6..f71318e 100644
--- a/java/vector/src/main/java/org/apache/arrow/vector/ipc/ArrowMagic.java
+++ b/java/vector/src/main/java/org/apache/arrow/vector/ipc/ArrowMagic.java
@@ -18,13 +18,11 @@
 
 package org.apache.arrow.vector.ipc;
 
-import org.apache.arrow.vector.ipc.WriteChannel;
-
 import java.io.IOException;
 import java.nio.charset.StandardCharsets;
 import java.util.Arrays;
 
-public class ArrowMagic {
+class ArrowMagic {
 
   private static final byte[] MAGIC = "ARROW1".getBytes(StandardCharsets.UTF_8);
 

-- 
To stop receiving notification emails like this one, please contact
['"commits@arrow.apache.org" <co...@arrow.apache.org>'].