Skip to content
Snippets Groups Projects
Commit 0a6c7a03 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

allow whitespace between name and xml path in datasets file, as long as there is at least one TAB.

parent 494061f5
Branches
Tags
No related merge requests found
......@@ -250,7 +250,7 @@ public class BigDataServer
for ( final String str : lines )
{
final String[] tokens = str.split( "\t" );
final String[] tokens = str.split( "\\s*\\t\\s*" );
if ( tokens.length == 2 && StringUtils.isNotEmpty( tokens[ 0 ].trim() ) && StringUtils.isNotEmpty( tokens[ 1 ].trim() ) )
{
final String name = tokens[ 0 ].trim();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment