We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d370ab8 commit 2c4ed46Copy full SHA for 2c4ed46
source/JarResolverLib/src/Google.JarResolver/Dependency.cs
@@ -193,7 +193,7 @@ public string Key { get {
193
private static bool IsGreater(string version1, string version2) {
194
version1 = version1.EndsWith("+") ?
195
version1.Substring(0, version1.Length - 1) : version1;
196
- version2 = version1.EndsWith("+") ?
+ version2 = version2.EndsWith("+") ?
197
version2.Substring(0, version2.Length - 1) : version2;
198
string[] version1Components = version1.Split('.');
199
string[] version2Components = version2.Split('.');
0 commit comments