FailureExpectedWithNewMetamodel cleanup

This commit is contained in:
Steve Ebersole 2014-04-03 21:37:27 -05:00
parent 2a0b9825f1
commit 8ed0bbcd52
1 changed files with 4 additions and 0 deletions

View File

@ -496,6 +496,10 @@ public final class StringHelper {
} }
public static String qualifyIfNot(String qualifier, String name) { public static String qualifyIfNot(String qualifier, String name) {
if ( isEmpty( name ) ) {
return null;
}
if ( name.indexOf( '.' ) > 0 ) { if ( name.indexOf( '.' ) > 0 ) {
return name; return name;
} }