mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-16 17:39:49 +00:00
show null values properly
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@64 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
57a67412b9
commit
c60df467e7
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ public final class ParserUtils
|
||||||
{
|
{
|
||||||
final int groupCount = m.groupCount();
|
final int groupCount = m.groupCount();
|
||||||
for (int i = 1; i <= groupCount; i++)
|
for (int i = 1; i <= groupCount; i++)
|
||||||
System.out.println("group " + i + ":'" + m.group(i) + "'");
|
System.out.println("group " + i + ":" + (m.group(i) != null ? "'" + m.group(i) + "'" : "null"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String urlEncode(final String str)
|
public static String urlEncode(final String str)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue