Oops, forgot to call toLowerCase().

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4097 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2010-08-24 14:43:24 +00:00
parent 7957b60768
commit 25fb53e7a2
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ public class VCFWriterArgumentTypeDescriptor extends ArgumentTypeDescriptor {
int indexOfLastDot = fileName.lastIndexOf(".");
if ( indexOfLastDot == -1 )
return "";
return fileName.substring(indexOfLastDot);
return fileName.substring(indexOfLastDot).toLowerCase();
}
/**