Skip to content

Commit

Permalink
TEIIDDES-3118 added check to not process source info sources list is
Browse files Browse the repository at this point in the history
empty
  • Loading branch information
blafond committed Oct 17, 2017
1 parent f7a5bca commit 63274ef
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -977,7 +977,7 @@ public DynamicVdb dynVdbConvert(IFile destination, Properties options) throws Ex

boolean isMultiSource = sourceInfo.isMultiSource();
String singleTranslatorName = null;
if( !isMultiSource ) {
if( !isMultiSource && sourceInfo.getSources().size() != 0) {
singleTranslatorName = sourceInfo.getSource(0).getTranslatorName();
}

Expand Down

0 comments on commit 63274ef

Please sign in to comment.