Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 770B96486 for ; Thu, 16 Jun 2011 16:33:08 +0000 (UTC) Received: (qmail 24913 invoked by uid 500); 16 Jun 2011 16:33:08 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 24864 invoked by uid 500); 16 Jun 2011 16:33:08 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 24857 invoked by uid 99); 16 Jun 2011 16:33:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jun 2011 16:33:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jun 2011 16:33:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 196F823889E1; Thu, 16 Jun 2011 16:32:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1136535 - /commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java Date: Thu, 16 Jun 2011 16:32:47 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110616163247.196F823889E1@eris.apache.org> Author: simonetripodi Date: Thu Jun 16 16:32:46 2011 New Revision: 1136535 URL: http://svn.apache.org/viewvc?rev=1136535&view=rev Log: no needs to depend from the concrete implementation for LabeledVertex Modified: commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java Modified: commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java?rev=1136535&r1=1136534&r2=1136535&view=diff ============================================================================== --- commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java (original) +++ commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/model/BaseLabeledEdge.java Thu Jun 16 16:32:46 2011 @@ -22,8 +22,9 @@ package org.apache.commons.graph.model; import static java.lang.String.format; import org.apache.commons.graph.LabeledEdge; +import org.apache.commons.graph.LabeledVertex; -public class BaseLabeledEdge +public class BaseLabeledEdge implements LabeledEdge {