Skip to content

Commit

Permalink
Merge pull request #10 from ViceIce/master
Browse files Browse the repository at this point in the history
Wrong property when building for net v4.5.
  • Loading branch information
ericvergnaud committed May 9, 2015
2 parents a3490ba + 704cd08 commit 355d016
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 355d016

Please sign in to comment.