]> source.dussan.org Git - poi.git/commitdiff
fix typo
authorPJ Fanning <fanningpj@apache.org>
Sat, 31 Aug 2019 16:19:07 +0000 (16:19 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sat, 31 Aug 2019 16:19:07 +0000 (16:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1866213 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/poifs/crypt/dsig/OOXMLURIDereferencer.java

index 6a9cf7685324574898e691f72a72d3138f513b25..b4061622e0c30ca42667664e44d2ccd775c920b2 100644 (file)
@@ -69,7 +69,7 @@ public class OOXMLURIDereferencer implements URIDereferencer, SignatureConfigura
             throw new NullPointerException("URIReference cannot be null");
         }
         if (null == context) {
-            throw new NullPointerException("XMLCrytoContext cannot be null");
+            throw new NullPointerException("XMLCryptoContext cannot be null");
         }
 
         URI uri;
@@ -104,7 +104,7 @@ public class OOXMLURIDereferencer implements URIDereferencer, SignatureConfigura
         } catch (IOException e) {
             throw new URIReferenceException("I/O error: " + e.getMessage(), e);
         }
-        
+
         return new OctetStreamData(dataStream, uri.toString(), null);
     }