Skip to content

Commit

Permalink
Delete unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarcotte committed Jul 26, 2015
1 parent 57fb7b7 commit 22d0093
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/com/dmarcotte/handlebars/parsing/HbParsing.java
Original file line number Diff line number Diff line change
Expand Up @@ -397,17 +397,6 @@ private boolean parseCloseBlock(PsiBuilder builder) {
return true;
}

/**
* OPEN sexpr CLOSE
*/
protected void parseRegularMustache(PsiBuilder builder) {
PsiBuilder.Marker mustacheMarker = builder.mark();
parseLeafToken(builder, OPEN);
parseSexpr(builder);
parseLeafTokenGreedy(builder, CLOSE);
mustacheMarker.done(MUSTACHE);
}

/**
* mustache
* : OPEN sexpr CLOSE
Expand Down

0 comments on commit 22d0093

Please sign in to comment.