Return-Path: X-Original-To: apmail-poi-commits-archive@minotaur.apache.org Delivered-To: apmail-poi-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 EAE9117816 for ; Mon, 11 May 2015 20:03:36 +0000 (UTC) Received: (qmail 11656 invoked by uid 500); 11 May 2015 20:03:36 -0000 Delivered-To: apmail-poi-commits-archive@poi.apache.org Received: (qmail 11618 invoked by uid 500); 11 May 2015 20:03:36 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 11609 invoked by uid 99); 11 May 2015 20:03:36 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 May 2015 20:03:36 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id BBC80AC0838 for ; Mon, 11 May 2015 20:03:36 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1678814 - /poi/trunk/src/java/org/apache/poi/ddf/EscherPropertyFactory.java Date: Mon, 11 May 2015 20:03:36 -0000 To: commits@poi.apache.org From: centic@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150511200336.BBC80AC0838@hades.apache.org> Author: centic Date: Mon May 11 20:03:36 2015 New Revision: 1678814 URL: http://svn.apache.org/r1678814 Log: Adjust intendation Modified: poi/trunk/src/java/org/apache/poi/ddf/EscherPropertyFactory.java Modified: poi/trunk/src/java/org/apache/poi/ddf/EscherPropertyFactory.java URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ddf/EscherPropertyFactory.java?rev=1678814&r1=1678813&r2=1678814&view=diff ============================================================================== --- poi/trunk/src/java/org/apache/poi/ddf/EscherPropertyFactory.java (original) +++ poi/trunk/src/java/org/apache/poi/ddf/EscherPropertyFactory.java Mon May 11 20:03:36 2015 @@ -84,12 +84,12 @@ public final class EscherPropertyFactory byte[] complexData = ((EscherComplexProperty)p).getComplexData(); int leftover = data.length-pos; - if(leftover < complexData.length){ - throw new IllegalStateException("Could not read complex escher property, lenght was " + complexData.length + ", but had only " + - leftover + " bytes left"); + if(leftover < complexData.length){ + throw new IllegalStateException("Could not read complex escher property, lenght was " + complexData.length + ", but had only " + + leftover + " bytes left"); } - System.arraycopy(data, pos, complexData, 0, complexData.length); + System.arraycopy(data, pos, complexData, 0, complexData.length); pos += complexData.length; } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org