]> source.dussan.org Git - poi.git/commitdiff
Adjust intendation
authorDominik Stadler <centic@apache.org>
Mon, 11 May 2015 20:03:36 +0000 (20:03 +0000)
committerDominik Stadler <centic@apache.org>
Mon, 11 May 2015 20:03:36 +0000 (20:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1678814 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/ddf/EscherPropertyFactory.java

index 3e653f5b8dbb4f111eff8c508075a03c9b64ae5d..efea004382c8ed8cb304d53324d3f7d0fee8da90 100644 (file)
@@ -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;
                 }
             }