Skip to content

Commit 3a1640b

Browse files
committed
Remove unexpected changes on merge and some commented out code
1 parent 4aa223e commit 3a1640b

File tree

3 files changed

+1
-48
lines changed

3 files changed

+1
-48
lines changed

Rubberduck.Core/Properties/Settings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rubberduck.Core/Rubberduck.Core.csproj

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,4 @@
9292
<Version>2.0.20525</Version>
9393
</PackageReference>
9494
</ItemGroup>
95-
<ItemGroup>
96-
<Compile Update="Properties\Settings.Designer.cs">
97-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
98-
<AutoGen>True</AutoGen>
99-
<DependentUpon>Settings.settings</DependentUpon>
100-
</Compile>
101-
</ItemGroup>
102-
<ItemGroup>
103-
<None Update="Properties\Settings.settings">
104-
<Generator>SettingsSingleFileGenerator</Generator>
105-
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
106-
</None>
107-
</ItemGroup>
10895
</Project>

Rubberduck.Parsing/SelectionExtensions.cs

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -79,40 +79,6 @@ public static bool Overlaps(this Selection thisSelection, Selection selection)
7979
return true;
8080

8181
return false;
82-
83-
//if (thisSelection.StartLine == selection.EndLine)
84-
//{
85-
// if (thisSelection.StartColumn <= selection.EndColumn)
86-
// return true;
87-
//}
88-
//else if(thisSelection.EndLine == selection.EndLine)
89-
//{
90-
// if (thisSelection.EndColumn <= selection.EndColumn)
91-
// return true;
92-
//}
93-
94-
//if (thisSelection.EndLine == selection.StartLine)
95-
//{
96-
// if (thisSelection.EndColumn >= selection.StartColumn)
97-
// return true;
98-
//}
99-
//else if(thisSelection.StartLine == selection.StartLine)
100-
//{
101-
// if (thisSelection.StartColumn <= selection.StartColumn)
102-
// return true;
103-
//}
104-
105-
//if (thisSelection.StartLine < selection.EndLine && thisSelection.EndLine > selection.StartLine)
106-
//{
107-
// return true;
108-
//}
109-
110-
//if (thisSelection.EndLine > selection.StartLine && thisSelection.StartLine < selection.EndLine)
111-
//{
112-
// return true;
113-
//}
114-
115-
//return false;
11682
}
11783
}
11884
}

0 commit comments

Comments
 (0)