代码拉取完成,页面将自动刷新
同步操作将从 src-openEuler/glassfish-fastinfoset 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
--- a/utilities/src/main/java/com/sun/xml/fastinfoset/streambuffer/FastInfosetWriterSAXBufferProcessor.java 2011-03-30 23:52:37.000000000 +0200
+++ b/utilities/src/main/java/com/sun/xml/fastinfoset/streambuffer/FastInfosetWriterSAXBufferProcessor.java-gil 2012-03-31 14:44:06.180707216 +0200
@@ -71,8 +71,8 @@
public final void process(FastInfosetWriter writer) throws SAXException {
_writer = writer;
- final int item = readStructure();
- switch(_eiiStateTable[item]) {
+ final int item = getEIIState(readStructure());
+ switch(item) {
case STATE_DOCUMENT:
processDocument();
break;
@@ -123,8 +123,8 @@
boolean firstElementHasOccured = false;
int item;
do {
- item = readStructure();
- switch(_eiiStateTable[item]) {
+ item = getEIIState(readStructure());
+ switch(item) {
case STATE_ELEMENT_U_LN_QN:
firstElementHasOccured = true;
processElement(readStructureString(), readStructureString(), readStructureString());
@@ -186,8 +186,8 @@
} while(item != T_END || !firstElementHasOccured);
while(item != T_END) {
- item = readStructure();
- switch(_eiiStateTable[item]) {
+ item = getEIIState(readStructure());
+ switch(item) {
case STATE_COMMENT_AS_CHAR_ARRAY_SMALL:
{
final int length = readStructure();
@@ -244,7 +244,7 @@
}
do {
- item = _eiiStateTable[readStructure()];
+ item = getEIIState(readStructure());
switch(item) {
case STATE_ELEMENT_U_LN_QN:
processElement(readStructureString(), readStructureString(), readStructureString());
@@ -365,7 +365,7 @@
private int processNamespaceAttributes(int item) throws SAXException {
do {
- switch(_niiStateTable[item]) {
+ switch(getNIIState(item)) {
case STATE_NAMESPACE_ATTRIBUTE:
// Undeclaration of default namespace
processNamespaceAttribute("", "");
@@ -398,7 +398,7 @@
private void processAttributes(int item) throws SAXException {
do {
- switch(_aiiStateTable[item]) {
+ switch(getAIIState(item)) {
case STATE_ATTRIBUTE_U_LN_QN:
_attributes.addAttribute(readStructureString(), readStructureString(), readStructureString(), readStructureString(), readContentString());
break;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。