Fix CRIUSupport for local building

This commit is contained in:
2025-07-30 11:27:09 +02:00
parent 9d1b0063b9
commit 43663ea099
@@ -31,19 +31,23 @@ public class CRIUSupport {
throw new UnsupportedOperationException("This is a Dummy"); throw new UnsupportedOperationException("This is a Dummy");
} }
public void setAutoDedup(boolean autoDedup) { public CRIUSupport setGhostFileLimit(long limit) {
throw new UnsupportedOperationException("This is a Dummy"); throw new UnsupportedOperationException("This is a Dummy");
} }
public void setShellJob(boolean shellJob) { public CRIUSupport setAutoDedup(boolean autoDedup) {
throw new UnsupportedOperationException("This is a Dummy"); throw new UnsupportedOperationException("This is a Dummy");
} }
public void setFileLocks(boolean fileLocks) { public CRIUSupport setShellJob(boolean shellJob) {
throw new UnsupportedOperationException("This is a Dummy"); 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"); throw new UnsupportedOperationException("This is a Dummy");
} }