Fix to have consistent whitespace, and add javadoc deprecated entries

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1496673 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2013-06-25 23:34:22 +00:00
parent 9d87fb9caa
commit bd92cbc8b5

View File

@ -148,7 +148,8 @@ public abstract class POIDocument {
*/
protected PropertySet getPropertySet(String setName) {
//directory can be null when creating new documents
if(directory == null || !directory.hasEntry(setName)) return null;
if (directory == null || !directory.hasEntry(setName))
return null;
DocumentInputStream dis;
try {
@ -235,11 +236,11 @@ public abstract class POIDocument {
* @param source is the source POIFS to copy from
* @param target is the target POIFS to copy to
* @param excepts is a list of Strings specifying what nodes NOT to copy
* @deprecated Use {@link EntryUtils#copyNodes(DirectoryEntry, DirectoryEntry, List<String)} instead
*/
@Deprecated
protected void copyNodes( POIFSFileSystem source, POIFSFileSystem target,
List<String> excepts ) throws IOException
{
List<String> excepts ) throws IOException {
EntryUtils.copyNodes( source, target, excepts );
}
@ -248,6 +249,7 @@ public abstract class POIDocument {
* @param sourceRoot is the source POIFS to copy from
* @param targetRoot is the target POIFS to copy to
* @param excepts is a list of Strings specifying what nodes NOT to copy
* @deprecated Use {@link EntryUtils#copyNodes(DirectoryEntry, DirectoryEntry, List<String)} instead
*/
@Deprecated
protected void copyNodes( DirectoryNode sourceRoot,
@ -258,6 +260,7 @@ public abstract class POIDocument {
/**
* Copies an Entry into a target POIFS directory, recursively
* @deprecated Use {@link EntryUtils#copyNodeRecursively(Entry, DirectoryEntry)} instead
*/
@Internal
@Deprecated