Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 3543 invoked from network); 3 Sep 2007 00:00:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Sep 2007 00:00:26 -0000 Received: (qmail 78078 invoked by uid 500); 3 Sep 2007 00:00:20 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 78047 invoked by uid 500); 3 Sep 2007 00:00:20 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 78036 invoked by uid 99); 3 Sep 2007 00:00:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Sep 2007 17:00:20 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Sep 2007 00:01:33 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C1D811A9832; Sun, 2 Sep 2007 16:59:54 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r572195 - in /directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful: CallbackHistory.java DecoderStack.java Date: Sun, 02 Sep 2007 23:59:54 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070902235954.C1D811A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Sun Sep 2 16:59:52 2007 New Revision: 572195 URL: http://svn.apache.org/viewvc?rev=572195&view=rev Log: Used geznerics to remove some warnings Modified: directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/CallbackHistory.java directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStack.java Modified: directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/CallbackHistory.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/CallbackHistory.java?rev=572195&r1=572194&r2=572195&view=diff ============================================================================== --- directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/CallbackHistory.java (original) +++ directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/CallbackHistory.java Sun Sep 2 16:59:52 2007 @@ -35,7 +35,7 @@ public class CallbackHistory implements DecoderCallback, EncoderCallback { /** history of decoded objects in cronological order */ - private final LinkedList history; + private final LinkedList history; /** the length of callback history stored */ private final int length; @@ -63,7 +63,7 @@ public CallbackHistory(int length) { this.length = length; - history = new LinkedList(); + history = new LinkedList(); } Modified: directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStack.java URL: http://svn.apache.org/viewvc/directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStack.java?rev=572195&r1=572194&r2=572195&view=diff ============================================================================== --- directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStack.java (original) +++ directory/shared/trunk/asn1/src/main/java/org/apache/directory/shared/asn1/codec/stateful/DecoderStack.java Sun Sep 2 16:59:52 2007 @@ -42,7 +42,7 @@ private final DecoderCallback topcb; /** a stack of StatefulDecoders */ - private Stack decoders = new Stack(); + private Stack decoders = new Stack(); /**