File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -147,9 +147,9 @@ public override int GetHashCode()
147
147
/// <inheritdoc />
148
148
public int CompareTo ( Position other )
149
149
{
150
- var characterComparison = Character . CompareTo ( other . Character ) ;
151
- if ( characterComparison != 0 ) return characterComparison ;
152
- return Line . CompareTo ( other . Line ) ;
150
+ var lineCmp = Line . CompareTo ( other . Line ) ;
151
+ if ( lineCmp != 0 ) return lineCmp ;
152
+ return Character . CompareTo ( other . Character ) ;
153
153
}
154
154
155
155
public static bool operator == ( Position x , Position y )
Original file line number Diff line number Diff line change 15
15
<RepositoryUrl >https://github.com/CXuesong/LanguageServer.NET</RepositoryUrl >
16
16
<RepositoryType >git</RepositoryType >
17
17
<PackageReleaseNotes >See https://github.com/CXuesong/LanguageServer.NET/releases .</PackageReleaseNotes >
18
- <AssemblyVersion >0.1.1.2 </AssemblyVersion >
19
- <FileVersion >0.1.1.2 </FileVersion >
18
+ <AssemblyVersion >0.1.1.3 </AssemblyVersion >
19
+ <FileVersion >0.1.1.3 </FileVersion >
20
20
</PropertyGroup >
21
21
22
22
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
You can’t perform that action at this time.
0 commit comments