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"); }