Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Christian Willms
hfc
Commits
95727970
Commit
95727970
authored
Jun 13, 2018
by
Bernd Kiefer
Browse files
From one error to the next
parent
97b5f8c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/de/dfki/lt/hfc/types/XsdString.java
View file @
95727970
...
...
@@ -55,9 +55,13 @@ public final class XsdString extends XsdAnySimpleType {
}
}
else
{
// there is a language tag
ext
=
val
.
substring
(
1
,
index
-
1
);
this
.
languageTag
=
val
.
substring
(
index
+
1
,
length
);;
// there is a language tag ?
if
(
val
.
charAt
(
0
)
==
'"'
&&
val
.
charAt
(
index
-
1
)
==
'"'
)
{
ext
=
val
.
substring
(
1
,
index
-
1
);
this
.
languageTag
=
val
.
substring
(
index
+
1
,
length
);;
}
else
{
this
.
value
=
val
;
}
}
}
...
...
Write
Preview
Supports
Markdown
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