Skip to content

Commit

Permalink
Fixes #9: Wrong property name when building for target framework ver…
Browse files Browse the repository at this point in the history
…sion v4.5.
  • Loading branch information
viceice committed May 9, 2015
1 parent a3490ba commit 704cd08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/CSharp/Antlr4.Runtime/Misc/RuleDependencyChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ private static RuleDependencyChecker.RuleRelations ExtractRuleRelations(TypeInfo
{
continue;
}
foreach (Transition transition in state.Transitions)
foreach (Transition transition in state.transitions)
{
if (transition.TransitionType != TransitionType.Rule)
{
Expand Down Expand Up @@ -932,7 +932,7 @@ private static RuleDependencyChecker.RuleRelations ExtractRuleRelations(Type rec
{
continue;
}
foreach (Transition transition in state.TransitionsArray)
foreach (Transition transition in state.transitions)
{
if (transition.TransitionType != TransitionType.Rule)
{
Expand Down

0 comments on commit 704cd08

Please sign in to comment.