From 046ab3f1e864fd024b2d9cea16b8a6dbd3412537 Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Tue, 6 May 2014 20:53:01 -0500 Subject: [PATCH] Recipe files no longer require a blank line at the end. --- recipes/RecipeHandler.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes/RecipeHandler.java b/recipes/RecipeHandler.java index f775bab58..8524e90e2 100644 --- a/recipes/RecipeHandler.java +++ b/recipes/RecipeHandler.java @@ -361,6 +361,10 @@ public class RecipeHandler implements IRecipeHandler } } + + if ( token.length() > 0 ) + tokens.add( token ); + reader.close(); processTokens( loader, path, line ); }