Skip to content
Snippets Groups Projects
Commit 83d5c027 authored by Terry D. Norbraten's avatar Terry D. Norbraten
Browse files

[Terry N.] fields made final

parent d4690d1d
No related branches found
No related tags found
No related merge requests found
......@@ -43,9 +43,9 @@ import org.web3d.vrml.export.compressors.NodeCompressor;
class FastInfosetElementReader extends X3DSAVAdapter
implements PrimitiveTypeContentHandler, EncodingAlgorithmContentHandler {
private BooleanStack inCompressorStack;
private final BooleanStack inCompressorStack;
private BooleanStack skipEEStack;
private final BooleanStack skipEEStack;
private NodeCompressor currentCompressor;
......@@ -57,7 +57,7 @@ class FastInfosetElementReader extends X3DSAVAdapter
private boolean pastPayload;
/** Switch between methods, should go away */
private boolean compressedAttWay = false;
private final boolean compressedAttWay = false;
/**
* Initialise a new instance of the reader
......@@ -616,7 +616,7 @@ class FastInfosetElementReader extends X3DSAVAdapter
contentHandler.startField(attribs.getValue(NAME_ATTR));
contentHandler.useDecl(DEFName);
} else {
String att_name;
// String att_name;
int val_attr = attribs.getIndex(VALUE_ATTR);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment