]> source.dussan.org Git - poi.git/commitdiff
Fix inconsistent indents
authorNick Burch <nick@apache.org>
Thu, 8 May 2014 14:46:43 +0000 (14:46 +0000)
committerNick Burch <nick@apache.org>
Thu, 8 May 2014 14:46:43 +0000 (14:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1593297 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hsmf/datatypes/PropertiesChunk.java

index 18a5ae7303f6899e9901a2037e74ca11741ca0f0..8972220d92e8496e15a99bc3123d436665e1918c 100644 (file)
@@ -194,35 +194,35 @@ public abstract class PropertiesChunk extends Chunk {
             
             // Skip over any padding
             if (length < 8) {
-               byte[] padding = new byte[8-length];
-               IOUtils.readFully(value, padding);
+                byte[] padding = new byte[8-length];
+                IOUtils.readFully(value, padding);
             }
             
             // Wrap and store
             PropertyValue propVal = null;
             if (isPointer) {
-               // We'll match up the chunk later
-               propVal = new ChunkBasedPropertyValue(prop, flags, data);
+                // We'll match up the chunk later
+                propVal = new ChunkBasedPropertyValue(prop, flags, data);
             }
             else if (type == Types.SHORT) {
                 propVal = new ShortPropertyValue(prop, flags, data);
-             }
+            }
             else if (type == Types.LONG) {
                 propVal = new LongPropertyValue(prop, flags, data);
-             }
+            }
             else if (type == Types.LONG_LONG) {
-               propVal = new LongLongPropertyValue(prop, flags, data);
+                propVal = new LongLongPropertyValue(prop, flags, data);
             }
             else if (type == Types.TIME) {
-               propVal = new TimePropertyValue(prop, flags, data);
+                propVal = new TimePropertyValue(prop, flags, data);
             }
             // TODO Add in the rest of the types
             else {
-               propVal = new PropertyValue(prop, flags, data);
+                propVal = new PropertyValue(prop, flags, data);
             }
             
             if (properties.get(prop) == null) {
-               properties.put(prop, new ArrayList<PropertyValue>());
+                properties.put(prop, new ArrayList<PropertyValue>());
             }
             properties.get(prop).add(propVal);
          } catch (BufferUnderrunException e) {