eclipse plugin: template parser should skip empty lines
This commit is contained in:
parent
02f96fc169
commit
89460a7ee9
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public class TemplateProvider
|
|||
while ((line = reader.readLine()) != null)
|
||||
{
|
||||
// comment
|
||||
if (line.startsWith("#"))
|
||||
if (line.startsWith("#") || line.matches("^[\t ]*$"))
|
||||
continue;
|
||||
|
||||
// 0 - template name | 1 - template file
|
||||
|
|
Loading…
Add table
Reference in a new issue