Return-Path: X-Original-To: apmail-subversion-dev-archive@minotaur.apache.org Delivered-To: apmail-subversion-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D93A2185F5 for ; Wed, 25 Nov 2015 08:49:34 +0000 (UTC) Received: (qmail 88891 invoked by uid 500); 25 Nov 2015 08:49:34 -0000 Delivered-To: apmail-subversion-dev-archive@subversion.apache.org Received: (qmail 88809 invoked by uid 500); 25 Nov 2015 08:49:34 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 88799 invoked by uid 99); 25 Nov 2015 08:49:34 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Nov 2015 08:49:34 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id E68BC180AD7 for ; Wed, 25 Nov 2015 08:49:33 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.001 X-Spam-Level: X-Spam-Status: No, score=-0.001 tagged_above=-999 required=6.31 tests=[SPF_HELO_PASS=-0.001] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id mFGbHKLM87DP for ; Wed, 25 Nov 2015 08:49:19 +0000 (UTC) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.31.39]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTPS id 337B820229 for ; Wed, 25 Nov 2015 08:49:19 +0000 (UTC) Received: from [91.113.179.170] (helo=[192.168.92.20]) by smtprelay01.ispgateway.de with esmtpsa (TLSv1.2:DHE-RSA-AES128-SHA:128) (Exim 4.84) (envelope-from ) id 1a1VlI-0006I2-44 for dev@subversion.apache.org; Wed, 25 Nov 2015 09:49:12 +0100 To: dev@subversion.apache.org From: Marc Strapetz Subject: JavaHL: "Not implemented" error in StatusEditor.addAbsent Message-ID: <56557614.1080203@syntevo.com> Date: Wed, 25 Nov 2015 09:49:24 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Df-Sender: bWFyYy5zdHJhcGV0ekBzeW50ZXZvLmNvbQ== One of our users has reported following Exception against Subversion 1.9.2: Caused by: java.lang.RuntimeException: Not implemented: StatusEditor.addAbsent at org.apache.subversion.javahl.remote.StatusEditor.addAbsent(StatusEditor.java:110) ... 15 more Actually, StatusEditor.addAbsent looks like this: public void addAbsent(String relativePath, NodeKind kind, long replacesRevision) { //DEBUG:System.err.println(" [J] StatusEditor.addAbsent"); checkState(); throw new RuntimeException("Not implemented: StatusEditor.addAbsent"); } Is there any more debug information I should try to collect? -Marc