You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/07/17 08:45:55 UTC

svn commit: r1753032 - /poi/trunk/src/scratchpad/src/org/apache/poi/extractor/OLE2ScratchpadExtractorFactory.java

Author: onealj
Date: Sun Jul 17 08:45:55 2016
New Revision: 1753032

URL: http://svn.apache.org/viewvc?rev=1753032&view=rev
Log:
whitespace

Modified:
    poi/trunk/src/scratchpad/src/org/apache/poi/extractor/OLE2ScratchpadExtractorFactory.java

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/extractor/OLE2ScratchpadExtractorFactory.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/extractor/OLE2ScratchpadExtractorFactory.java?rev=1753032&r1=1753031&r2=1753032&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/extractor/OLE2ScratchpadExtractorFactory.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/extractor/OLE2ScratchpadExtractorFactory.java Sun Jul 17 08:45:55 2016
@@ -105,13 +105,13 @@ public class OLE2ScratchpadExtractorFact
      *  {@link POITextExtractor} for each embedded file.
      */
     public static void identifyEmbeddedResources(POIOLE2TextExtractor ext, List<Entry> dirs, List<InputStream> nonPOIFS) throws IOException {
-      // Find all the embedded directories
+        // Find all the embedded directories
         DirectoryEntry root = ext.getRoot();
-        if(root == null) {
+        if (root == null) {
             throw new IllegalStateException("The extractor didn't know which POIFS it came from!");
         }
 
-        if(ext instanceof WordExtractor) {
+        if (ext instanceof WordExtractor) {
             // These are in ObjectPool -> _... under the root
             try {
                 DirectoryEntry op = (DirectoryEntry)
@@ -129,14 +129,14 @@ public class OLE2ScratchpadExtractorFact
             //} else if(ext instanceof PowerPointExtractor) {
             // Tricky, not stored directly in poifs
             // TODO
-        } else if(ext instanceof OutlookTextExtactor) {
+        } else if (ext instanceof OutlookTextExtactor) {
             // Stored in the Attachment blocks
             MAPIMessage msg = ((OutlookTextExtactor)ext).getMAPIMessage();
-            for(AttachmentChunks attachment : msg.getAttachmentFiles()) {
-                if(attachment.attachData != null) {
+            for (AttachmentChunks attachment : msg.getAttachmentFiles()) {
+                if (attachment.attachData != null) {
                     byte[] data = attachment.attachData.getValue();
                     nonPOIFS.add( new ByteArrayInputStream(data) );
-                } else if(attachment.attachmentDirectory != null) {
+                } else if (attachment.attachmentDirectory != null) {
                     dirs.add(attachment.attachmentDirectory.getDirectory());
                 }
             }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org