You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/07/17 20:03:05 UTC

svn commit: r1362586 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java

Author: ggregory
Date: Tue Jul 17 18:03:05 2012
New Revision: 1362586

URL: http://svn.apache.org/viewvc?rev=1362586&view=rev
Log:
Per discussion on the ML, see http://www.mail-archive.com/dev@commons.apache.org/msg32323.html.
org.apache.commons.vfs2.provider.tar.TarFileObject.entry is now private.
org.apache.commons.vfs2.provider.tar.TarFileObject.setTarEntry(TarArchiveEntry) is now package private.

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java?rev=1362586&r1=1362585&r2=1362586&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java Tue Jul 17 18:03:05 2012
@@ -32,7 +32,7 @@ import org.apache.commons.vfs2.provider.
 public class TarFileObject extends AbstractFileObject
 {
     /** The TarArchiveEntry */
-    protected TarArchiveEntry entry;
+    private TarArchiveEntry entry;
     private final HashSet<String> children = new HashSet<String>();
     private final TarFileSystem fs;
     private FileType type;
@@ -54,7 +54,7 @@ public class TarFileObject extends Abstr
     /**
      * Sets the details for this file object.
      */
-    protected void setTarEntry(final TarArchiveEntry entry)
+    void setTarEntry(final TarArchiveEntry entry)
     {
         if (this.entry != null)
         {