]> source.dussan.org Git - poi.git/commitdiff
bug 60331: remove deprecated constructor and method in scratchpad o.a.p.hsmf.MAPIMessage
authorJaven O'Neal <onealj@apache.org>
Thu, 5 Jan 2017 10:41:23 +0000 (10:41 +0000)
committerJaven O'Neal <onealj@apache.org>
Thu, 5 Jan 2017 10:41:23 +0000 (10:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1777444 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java

index 79daf58e16cf94ab29db7329a4c255283e0a3a0c..a3d2152bbb7f5f0cd49593e370200d630a6d448d 100644 (file)
@@ -122,13 +122,6 @@ public class MAPIMessage extends POIReadOnlyDocument {
    public MAPIMessage(NPOIFSFileSystem fs) throws IOException {
       this(fs.getRoot());
    }
-   /**
-    * @deprecated Use {@link #MAPIMessage(DirectoryNode)} instead
-    */
-   @Deprecated
-   public MAPIMessage(DirectoryNode poifsDir, POIFSFileSystem fs) throws IOException {
-      this(poifsDir);
-   }
    /**
     * Constructor for reading MSG Files from a certain
     *  point within a POIFS filesystem
@@ -206,10 +199,6 @@ public class MAPIMessage extends POIReadOnlyDocument {
       }
       return getStringFromChunk(mainChunks.getHtmlBodyChunkString());
    }
-   @Deprecated
-   public String getHmtlBody() throws ChunkNotFoundException {
-      return getHtmlBody();
-   }
 
    /**
     * Gets the RTF Rich Message body of this Outlook Message, if this email
@@ -426,7 +415,7 @@ public class MAPIMessage extends POIReadOnlyDocument {
       
       // Nothing suitable in the headers, try HTML
       try {
-         String html = getHmtlBody();
+         String html = getHtmlBody();
          if(html != null && html.length() > 0) {
             // Look for a content type in the meta headers
             Pattern p = Pattern.compile(