Skip to content

Commit 2fd3aa4

Browse files
committed
Platform: Ah, typo. (1.4.1)
1 parent 7359a03 commit 2fd3aa4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Async/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>co.casterlabs</groupId>
77
<artifactId>Commons</artifactId>
8-
<version>1.4.0</version>
8+
<version>1.4.1</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
</project>

Events/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>co.casterlabs</groupId>
77
<artifactId>Commons</artifactId>
8-
<version>1.4.0</version>
8+
<version>1.4.1</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
</project>

Functional/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>co.casterlabs</groupId>
77
<artifactId>Commons</artifactId>
8-
<version>1.4.0</version>
8+
<version>1.4.1</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
</project>

IPC/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>co.casterlabs</groupId>
77
<artifactId>Commons</artifactId>
8-
<version>1.4.0</version>
8+
<version>1.4.1</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

Platform/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>co.casterlabs</groupId>
77
<artifactId>Commons</artifactId>
8-
<version>1.4.0</version>
8+
<version>1.4.1</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
</project>

Platform/src/main/java/co/casterlabs/commons/platform/ArchFamily.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public String getArchTarget(int wordSize, boolean isBigEndian) {
101101
(isBigEndian ? "sparc" : "sparcel");
102102

103103
case X86:
104-
return Platform.wordSize == 64 ? "x86_64" : "x86";
104+
return wordSize == 64 ? "x86_64" : "x86";
105105

106106
// Don't create a `default:` entry.
107107
// We want the compiler to warn us about missed values.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>co.casterlabs</groupId>
44
<artifactId>Commons</artifactId>
5-
<version>1.4.0</version>
5+
<version>1.4.1</version>
66
<packaging>pom</packaging>
77

88
<modules>

0 commit comments

Comments
 (0)