diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-11-18 13:17:24 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-11-18 13:17:24 +0000 |
commit | d96869c870a14eead6233f93b99014259de45c0f (patch) | |
tree | f4c93ac16d34f1977410118f7dd16c12ab16d6cd /poi | |
parent | ef1dd54f36f18be905347b7f8d08f325f5153c44 (diff) | |
download | poi-d96869c870a14eead6233f93b99014259de45c0f.tar.gz poi-d96869c870a14eead6233f93b99014259de45c0f.zip |
some incorrect uses of
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895151 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
3 files changed, 3 insertions, 3 deletions
diff --git a/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java b/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java index 85ebea3740..eec8d49046 100644 --- a/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java +++ b/poi/src/main/java/org/apache/poi/ddf/EscherRecord.java @@ -73,7 +73,7 @@ public abstract class EscherRecord implements Duplicatable, GenericRecord { /** * The contract of this method is to deserialize an escher record including - * it's children. + * its children. * * @param data The byte array containing the serialized escher * records. diff --git a/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherInputStream.java b/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherInputStream.java index c845d93b1d..a1c7cd4984 100644 --- a/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherInputStream.java +++ b/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherInputStream.java @@ -203,7 +203,7 @@ public abstract class ChunkedCipherInputStream extends LittleEndianInputStream { /** * Helper function for overriding the cipher invocation, i.e. XOR doesn't use a cipher - * and uses it's own implementation + * and uses its own implementation */ protected int invokeCipher(int totalBytes, boolean doFinal) throws GeneralSecurityException { if (doFinal) { diff --git a/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherOutputStream.java b/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherOutputStream.java index b600b20073..ffdec5ab5d 100644 --- a/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherOutputStream.java +++ b/poi/src/main/java/org/apache/poi/poifs/crypt/ChunkedCipherOutputStream.java @@ -207,7 +207,7 @@ public abstract class ChunkedCipherOutputStream extends FilterOutputStream { /** * Helper function for overriding the cipher invocation, i.e. XOR doesn't use a cipher - * and uses it's own implementation + * and uses its own implementation */ protected int invokeCipher(int posInChunk, boolean doFinal) throws GeneralSecurityException, IOException { byte[] plain = (plainByteFlags.isEmpty()) ? null : chunk.clone(); |