* libjava.compile/T20020529.java: New file.
From-SVN: r54039
This commit is contained in:
committed by
Bryce McKinlay
parent
50efa73711
commit
5549d65dfb
@@ -0,0 +1,23 @@
|
||||
public class T20020529
|
||||
{
|
||||
public void checkXMLLangAttributeValue(String lang)
|
||||
{
|
||||
int offset = -1;
|
||||
if (lang.length() >= 2) {
|
||||
char ch0 = lang.charAt(0);
|
||||
}
|
||||
if (offset > 0) {
|
||||
char ch = lang.charAt(offset++);
|
||||
if (ch != '-') {
|
||||
offset = -1;
|
||||
} else {
|
||||
while (true)
|
||||
{
|
||||
if (ch == '-')
|
||||
ch = lang.charAt(offset++);
|
||||
ch = lang.charAt(offset++);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user