From 0b125f916a6bfba38a767f7b0bdec32f340942e2 Mon Sep 17 00:00:00 2001 From: Holger Voormann Date: Tue, 20 May 2025 01:41:35 +0200 Subject: [PATCH] OSInfo: Update link to Java bug #8005545 (#664) In a comment, update the link to Java bug #8005545, as the current one leads to a webpage saying: "This bug is not available." --- src/main/java/org/xerial/snappy/OSInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/xerial/snappy/OSInfo.java b/src/main/java/org/xerial/snappy/OSInfo.java index 238909a..1462e19 100755 --- a/src/main/java/org/xerial/snappy/OSInfo.java +++ b/src/main/java/org/xerial/snappy/OSInfo.java @@ -176,7 +176,7 @@ public class OSInfo { } // Java 1.8 introduces a system property to determine armel or armhf - // http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8005545 + // https://bugs.openjdk.org/browse/JDK-8005545 String abi = System.getProperty("sun.arch.abi"); if(abi != null && abi.startsWith("gnueabihf")) { return "armv7";