Reporter | Dmitriy Kostikov (rumatavz) |
---|---|
Created | Feb 6, 2012 3:28:18 PM |
Updated | Feb 6, 2012 3:28:18 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Alexey Kuptsov (alexey.kuptsov) |
Subsystem | Quick Fixes |
Affected versions | 6.1 |
Fixed in build | No Fixed in build |
I have following code:
public class ScalesFlowChartState : FlowChartState
{
public void Initialize()
{
var all = new List<FlowChartState>();
List<FlowChartState> drainPosts = GetDrainPosts();
List<FlowChartState> fillingPosts = GetFillingPosts();
List<PipelineTubingFlowChartState> pipelineTubings = GetPipelineTubings();
List<FlowChartState> pipelineRoutes = GetPipelineRoutes(pipelineTubings);
List<FlowChartState> sclaes = GetScales();
List<FlowChartState> tanks = GetTanks();
}
}
When I'm trying to create methods (GetDrainPosts, GetFillingPosts and so on) using quic fix methods created correctly, but method usages becomes red.
After creation of first method I don't press ESC or ENTER but just select next method using mouse and press ALT+ENTER again.
In version 6.0 resharper behaves correctly.
Version information:
Microsoft Visual Studio 2010
Version 10.0.40219.1 SP1Rel
Microsoft .NET Framework
Version 4.0.30319 SP1Rel
JetBrains ReSharper 6.1 Full Edition build 6.1.37.86 on 2011-12-20T17:15:24
JetBrains ReSharper 6.1 package for Microsoft Visual Studio. For more information about ReSharper, visit http://www.jetbrains.com/resharper/. Copyright © 2003–2012 JetBrains, Inc.
public class ScalesFlowChartState : FlowChartState
{
public void Initialize()
{
var all = new List<FlowChartState>();
List<FlowChartState> drainPosts = GetDrainPosts();
List<FlowChartState> fillingPosts = GetFillingPosts();
List<PipelineTubingFlowChartState> pipelineTubings = GetPipelineTubings();
List<FlowChartState> pipelineRoutes = GetPipelineRoutes(pipelineTubings);
List<FlowChartState> sclaes = GetScales();
List<FlowChartState> tanks = GetTanks();
}
}
When I'm trying to create methods (GetDrainPosts, GetFillingPosts and so on) using quic fix methods created correctly, but method usages becomes red.
After creation of first method I don't press ESC or ENTER but just select next method using mouse and press ALT+ENTER again.
In version 6.0 resharper behaves correctly.
Version information:
Microsoft Visual Studio 2010
Version 10.0.40219.1 SP1Rel
Microsoft .NET Framework
Version 4.0.30319 SP1Rel
JetBrains ReSharper 6.1 Full Edition build 6.1.37.86 on 2011-12-20T17:15:24
JetBrains ReSharper 6.1 package for Microsoft Visual Studio. For more information about ReSharper, visit http://www.jetbrains.com/resharper/. Copyright © 2003–2012 JetBrains, Inc.