You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2010/10/08 22:23:27 UTC

svn commit: r1006008 - /subversion/branches/object-model/subversion/bindings/javahl/native/SVNClient.cpp

Author: hwright
Date: Fri Oct  8 20:23:27 2010
New Revision: 1006008

URL: http://svn.apache.org/viewvc?rev=1006008&view=rev
Log:
On the object-model branch:
Remove a method which slipped in in the merge in r1006005, fixing the JavaHL
build.

* subversion/bindings/javahl/native/SVNClient.cpp
  (streamFileContent): Remove.

Modified:
    subversion/branches/object-model/subversion/bindings/javahl/native/SVNClient.cpp

Modified: subversion/branches/object-model/subversion/bindings/javahl/native/SVNClient.cpp
URL: http://svn.apache.org/viewvc/subversion/branches/object-model/subversion/bindings/javahl/native/SVNClient.cpp?rev=1006008&r1=1006007&r2=1006008&view=diff
==============================================================================
--- subversion/branches/object-model/subversion/bindings/javahl/native/SVNClient.cpp (original)
+++ subversion/branches/object-model/subversion/bindings/javahl/native/SVNClient.cpp Fri Oct  8 20:23:27 2010
@@ -1062,25 +1062,6 @@ SVNClient::diffSummarize(const char *tar
                                                requestPool.pool()), );
 }
 
-void SVNClient::streamFileContent(const char *path, Revision &revision,
-                                  Revision &pegRevision,
-                                  OutputStream &outputStream)
-{
-    SVN::Pool requestPool;
-    SVN_JNI_NULL_PTR_EX(path, "path", );
-    Path intPath(path);
-    SVN_JNI_ERR(intPath.error_occured(), );
-
-    svn_client_ctx_t *ctx = context.getContext(NULL);
-    if (ctx == NULL)
-        return;
-
-    SVN_JNI_ERR(svn_client_cat2(outputStream.getStream(requestPool),
-                                path, pegRevision.revision(),
-                                revision.revision(), ctx, requestPool.pool()),
-                );
-}
-
 jbyteArray SVNClient::revProperty(const char *path,
                                   const char *name, Revision &rev)
 {