From 43663ea0996ac3db49db48d653dbc358b680447c Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Wed, 30 Jul 2025 11:27:09 +0200 Subject: [PATCH] Fix CRIUSupport for local building --- .../src/org/eclipse/openj9/criu/CRIUSupport.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/SpigotCore/CRIUDummy/src/org/eclipse/openj9/criu/CRIUSupport.java b/SpigotCore/CRIUDummy/src/org/eclipse/openj9/criu/CRIUSupport.java index 3a97e660..8fc6686f 100644 --- a/SpigotCore/CRIUDummy/src/org/eclipse/openj9/criu/CRIUSupport.java +++ b/SpigotCore/CRIUDummy/src/org/eclipse/openj9/criu/CRIUSupport.java @@ -31,19 +31,23 @@ public class CRIUSupport { throw new UnsupportedOperationException("This is a Dummy"); } - public void setAutoDedup(boolean autoDedup) { + public CRIUSupport setGhostFileLimit(long limit) { throw new UnsupportedOperationException("This is a Dummy"); } - public void setShellJob(boolean shellJob) { + public CRIUSupport setAutoDedup(boolean autoDedup) { throw new UnsupportedOperationException("This is a Dummy"); } - public void setFileLocks(boolean fileLocks) { + public CRIUSupport setShellJob(boolean shellJob) { throw new UnsupportedOperationException("This is a Dummy"); } - public void setLogFile(String logFile) { + public CRIUSupport setFileLocks(boolean fileLocks) { + throw new UnsupportedOperationException("This is a Dummy"); + } + + public CRIUSupport setLogFile(String logFile) { throw new UnsupportedOperationException("This is a Dummy"); }