Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
moex
Transmorpher
Commits
6a153057
Commit
6a153057
authored
Oct 15, 2002
by
Fabien Triolet
Browse files
Corrected a bug with local name of an element
parent
7b3a35b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
transmorpher/src/fr/fluxmedia/tmcontrib/generator/vcsReader.java
View file @
6a153057
...
...
@@ -293,7 +293,7 @@ class vcsReader implements XMLReader {
if
(
elementName
.
equals
(
vcsString
))
{
handler
.
startDocument
();
}
handler
.
startElement
(
""
,
""
,
elementName
,
atts
);
handler
.
startElement
(
""
,
elementName
,
elementName
,
atts
);
elementName
=
""
;
}
else
if
(
elementName
.
equals
(
"END"
))
{
...
...
@@ -343,7 +343,7 @@ class vcsReader implements XMLReader {
}
}
handler
.
startElement
(
""
,
""
,
elementName
,
atts
);
handler
.
startElement
(
""
,
elementName
,
elementName
,
atts
);
if
(!
elementValue
.
equals
(
""
))
{
if
(
decode
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment