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 E152A10FFA for ; Thu, 27 Feb 2014 13:47:01 +0000 (UTC) Received: (qmail 80369 invoked by uid 500); 27 Feb 2014 13:46:58 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 79974 invoked by uid 500); 27 Feb 2014 13:46:57 -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 79642 invoked by uid 99); 27 Feb 2014 13:46:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Feb 2014 13:46:56 +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, 27 Feb 2014 13:46:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id AC4A223889F7; Thu, 27 Feb 2014 13:46:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1572570 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.java Date: Thu, 27 Feb 2014 13:46:35 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140227134635.AC4A223889F7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Thu Feb 27 13:46:35 2014 New Revision: 1572570 URL: http://svn.apache.org/r1572570 Log: Add missing serial version ID (default). Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.java?rev=1572570&r1=1572569&r2=1572570&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.java Thu Feb 27 13:46:35 2014 @@ -24,6 +24,9 @@ package org.apache.commons.compress.arch * @since 1.8 */ public class StreamingNotSupportedException extends ArchiveException { + + private static final long serialVersionUID = 1L; + private final String format; /**