mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-11 14:11:36 +00:00
8003260: [findbug] some fields should be package protected
Change public or protected mutable static fields to private or package private. Reviewed-by: lancea
This commit is contained in:
parent
924beaaf2c
commit
fd69767808
@ -193,9 +193,12 @@ public class XMLDocumentFragmentScannerImpl
|
||||
null,
|
||||
};
|
||||
|
||||
protected static final char [] cdata = {'[','C','D','A','T','A','['};
|
||||
protected static final char [] xmlDecl = {'<','?','x','m','l'};
|
||||
protected static final char [] endTag = {'<','/'};
|
||||
private static final char [] cdata = {'[','C','D','A','T','A','['};
|
||||
private static final char [] endTag = {'<','/'};
|
||||
|
||||
//this variable is also used by XMLDocumentScannerImpl in the same package
|
||||
static final char [] xmlDecl = {'<','?','x','m','l'};
|
||||
|
||||
// debugging
|
||||
|
||||
/** Debug scanner state. */
|
||||
|
||||
@ -71,7 +71,7 @@ public class XMLEntityScanner implements XMLLocator {
|
||||
/** Listeners which should know when load is being called */
|
||||
private Vector listeners = new Vector();
|
||||
|
||||
public static final boolean [] VALID_NAMES = new boolean[127];
|
||||
private static final boolean [] VALID_NAMES = new boolean[127];
|
||||
|
||||
/**
|
||||
* Debug printing of buffer. This debugging flag works best when you
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user