You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2013/10/01 02:19:32 UTC

svn commit: r1527830 - in /subversion/trunk/subversion/bindings/javahl/native: InfoCallback.h PatchCallback.h SVNClient.cpp

Author: brane
Date: Tue Oct  1 00:19:31 2013
New Revision: 1527830

URL: http://svn.apache.org/r1527830
Log:
Remove unused structure from JavaHL.

* subversion/bindings/javahl/native/InfoCallback.h,
  subversion/bindings/javahl/native/PatchCallback.h (info_entry):
   Remove unused forward declaration.

* subversion/bindings/javahl/native/SVNClient.cpp (info_baton):
   Remove unused type declaration.

Modified:
    subversion/trunk/subversion/bindings/javahl/native/InfoCallback.h
    subversion/trunk/subversion/bindings/javahl/native/PatchCallback.h
    subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp

Modified: subversion/trunk/subversion/bindings/javahl/native/InfoCallback.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/InfoCallback.h?rev=1527830&r1=1527829&r2=1527830&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/InfoCallback.h (original)
+++ subversion/trunk/subversion/bindings/javahl/native/InfoCallback.h Tue Oct  1 00:19:31 2013
@@ -30,8 +30,6 @@
 #include <jni.h>
 #include "svn_client.h"
 
-struct info_entry;
-
 /**
  * This class holds a Java callback object, which will receive every line of
  * the file for which the callback information is requested.

Modified: subversion/trunk/subversion/bindings/javahl/native/PatchCallback.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/PatchCallback.h?rev=1527830&r1=1527829&r2=1527830&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/PatchCallback.h (original)
+++ subversion/trunk/subversion/bindings/javahl/native/PatchCallback.h Tue Oct  1 00:19:31 2013
@@ -30,8 +30,6 @@
 #include <jni.h>
 #include "svn_client.h"
 
-struct info_entry;
-
 /**
  * This class holds a Java callback object, which will receive every line of
  * the file for which the callback information is requested.

Modified: subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp?rev=1527830&r1=1527829&r2=1527830&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp Tue Oct  1 00:19:31 2013
@@ -1419,12 +1419,6 @@ jobject SVNClient::revProperties(const c
     return CreateJ::PropertyMap(props, subPool.getPool());
 }
 
-struct info_baton
-{
-    std::vector<info_entry> infoVect;
-    apr_pool_t *pool;
-};
-
 void
 SVNClient::info2(const char *path, Revision &revision, Revision &pegRevision,
                  svn_depth_t depth, StringArray &changelists,