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 2019/05/16 14:06:12 UTC

[commons-vfs] branch master updated: Remove Subversion's "@version $Id$".

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new c3777c7  Remove Subversion's "@version $Id$".
c3777c7 is described below

commit c3777c7dd1b4cbb04f025118593b256fc7fec9ad
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu May 16 10:06:08 2019 -0400

    Remove Subversion's "@version $Id$".
---
 .../org/apache/commons/vfs2/provider/sftp/IdentityRepositoryFactory.java | 1 -
 .../src/test/java/com/jcraft/jsch/TestIdentityRepositoryFactory.java     | 1 -
 .../test/java/org/apache/commons/vfs2/provider/UriParserTestCase.java    | 1 -
 .../org/apache/commons/vfs2/provider/jar/test/JarAttributesTestCase.java | 1 -
 .../org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java | 1 -
 .../test/java/org/apache/commons/vfs2/test/ProviderRandomReadTests.java  | 1 -
 .../java/org/apache/commons/vfs2/test/ProviderRandomReadWriteTests.java  | 1 -
 .../java/org/apache/commons/vfs2/test/ProviderRandomSetLengthTests.java  | 1 -
 8 files changed, 8 deletions(-)

diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/IdentityRepositoryFactory.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/IdentityRepositoryFactory.java
index 484e8ee..79f0339 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/IdentityRepositoryFactory.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/IdentityRepositoryFactory.java
@@ -22,7 +22,6 @@ import com.jcraft.jsch.JSch;
 /**
  * Creates instances of JSch {@link IdentityRepository}.
  *
- * @version $Id$
  */
 public interface IdentityRepositoryFactory {
     
diff --git a/commons-vfs2/src/test/java/com/jcraft/jsch/TestIdentityRepositoryFactory.java b/commons-vfs2/src/test/java/com/jcraft/jsch/TestIdentityRepositoryFactory.java
index 05adf9c..e5bd7bd 100644
--- a/commons-vfs2/src/test/java/com/jcraft/jsch/TestIdentityRepositoryFactory.java
+++ b/commons-vfs2/src/test/java/com/jcraft/jsch/TestIdentityRepositoryFactory.java
@@ -24,7 +24,6 @@ import org.apache.commons.vfs2.provider.sftp.IdentityRepositoryFactory;
  * This class is packaged in {@code com.jcraft.jsch} because {@code com.jcraft.jsch.LocalIdentityRepository} is declared
  * with default scope.
  *
- * @version $Id$
  */
 public class TestIdentityRepositoryFactory implements IdentityRepositoryFactory {
     @Override
diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/UriParserTestCase.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/UriParserTestCase.java
index 4b481fd..fb734e5 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/UriParserTestCase.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/UriParserTestCase.java
@@ -22,7 +22,6 @@ import org.junit.Test;
 
 /**
  *
- * @version $Id$
  */
 public class UriParserTestCase {
 
diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/jar/test/JarAttributesTestCase.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/jar/test/JarAttributesTestCase.java
index ad7c052..e29e5bb 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/jar/test/JarAttributesTestCase.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/jar/test/JarAttributesTestCase.java
@@ -26,7 +26,6 @@ import org.junit.Test;
 /**
  * Tests JAR attributes.
  *
- * @version $Id$
  */
 public class JarAttributesTestCase {
 
diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java
index 9277950..ab64a4b 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java
@@ -44,7 +44,6 @@ import org.junit.Test;
 /**
  * Custom tests
  *
- * @version $Id$
  */
 public class CustomRamProviderTest {
     private static final byte[] NON_EMPTY_FILE_CONTENT = new byte[] { 1, 2, 3 };
diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadTests.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadTests.java
index 686a84d..957980b 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadTests.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadTests.java
@@ -24,7 +24,6 @@ import org.apache.commons.vfs2.util.RandomAccessMode;
 /**
  * Random read-only test case for file providers.
  *
- * @version $Id$
  */
 public class ProviderRandomReadTests extends AbstractProviderTestCase {
     private static final String TEST_DATA = "This is a test file.";
diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadWriteTests.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadWriteTests.java
index 0e7aa67..7968f5d 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadWriteTests.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomReadWriteTests.java
@@ -25,7 +25,6 @@ import org.apache.commons.vfs2.util.RandomAccessMode;
 /**
  * Random read and write test case for file providers.
  *
- * @version $Id$
  */
 public class ProviderRandomReadWriteTests extends AbstractProviderTestCase {
     private static final String TEST_DATA = "This is a test file.";
diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomSetLengthTests.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomSetLengthTests.java
index 44cbbc1..5e644a4 100644
--- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomSetLengthTests.java
+++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/test/ProviderRandomSetLengthTests.java
@@ -28,7 +28,6 @@ import org.junit.Assert;
 /**
  * Random set length test cases for file providers.
  *
- * @version $Id$
  */
 public class ProviderRandomSetLengthTests extends AbstractProviderTestCase {
     private static final String TEST_DATA = "This is a test file.";