Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public final class OutputPropertiesFactory
private static final int S_XALAN_PREFIX_LEN = S_XALAN_PREFIX.length();

/** Synchronization object for lazy initialization of the above tables. */
private static Integer m_synch_object = new Integer(1);
private static Object m_synch_object = new Object();

/** the directory in which the various method property files are located */
private static final String PROP_DIR = SerializerBase.PKG_PATH+'/';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public class TransformerImpl extends Transformer
// or reentry while the transform is going on.

/** NEEDSDOC Field m_reentryGuard */
private Boolean m_reentryGuard = new Boolean(true);
private Object m_reentryGuard = new Object();

/**
* This is null unless we own the stream.
Expand Down