Skip to content

Commit

Permalink
Merge branch 'main' into massbank.eu
Browse files Browse the repository at this point in the history
  • Loading branch information
meier-rene committed Jun 20, 2024
2 parents 77c49d6 + 88f58e0 commit c892ab2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MassBank-Project/MassBank-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>MassBank-Project</artifactId>
<groupId>de.ipb-halle.msbi</groupId>
<version>2.2.7</version>
<version>2.2.7-hotfix1</version>
</parent>

<artifactId>MassBank-lib</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public int compare(Object o1, Object o2){
// ソート処理
switch (sortKey) {
case SORT_KEY_NAME: { // Nameソート
if (!e1.getSortName().equals(e2.getSortName())) {
if (!e1.getSortName().equalsIgnoreCase(e2.getSortName())) {
switch (sortAction) {
case SORT_ACTION_ASC:
ret = (e1.getSortName()).compareToIgnoreCase(e2.getSortName());
Expand Down
2 changes: 1 addition & 1 deletion MassBank-Project/MassBank-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>MassBank-Project</artifactId>
<groupId>de.ipb-halle.msbi</groupId>
<version>2.2.7</version>
<version>2.2.7-hotfix1</version>
</parent>

<artifactId>MassBank-web</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions MassBank-Project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.ipb-halle.msbi </groupId>
<artifactId>MassBank-Project</artifactId>
<version>2.2.7</version>
<version>2.2.7-hotfix1</version>
<name>MassBank-Project</name>
<url>https://github.com/MassBank/MassBank-web</url>
<packaging>pom</packaging>
Expand All @@ -29,7 +29,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<versionName>${project.version}</versionName>
<timestamp>2024-06-04T14:10:11+02:00</timestamp>
<timestamp>2024-06-20T10:49:13+02:00</timestamp>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit c892ab2

Please sign in to comment.