Skip to content

Commit

Permalink
Remove declared and not used variable
Browse files Browse the repository at this point in the history
  • Loading branch information
michalderkacz committed Nov 9, 2011
1 parent 465211c commit e33eb57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser2.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func parse2FirstElem(in_els *[]Element) (out_el Element, err error) {
return
}
// Tutaj (*in_els)[0] moze zawierac else lub end
switch stop_el := (*in_els)[0].(type) {
switch (*in_els)[0].(type) {
case *EndElem:
*in_els = (*in_els)[1:] // Usowamy end
case *ElseElem:
Expand Down

0 comments on commit e33eb57

Please sign in to comment.