Skip to content

Commit

Permalink
Merge branch 'devel' into chore/vscode-dev-environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Wroud authored Sep 19, 2024
2 parents 664f9e0 + b869bdd commit 5f95f45
Show file tree
Hide file tree
Showing 64 changed files with 644 additions and 420 deletions.
2 changes: 2 additions & 0 deletions server/bundles/io.cloudbeaver.model/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ Export-Package: io.cloudbeaver,
io.cloudbeaver.websocket,
io.cloudbeaver.model,
io.cloudbeaver.model.app,
io.cloudbeaver.model.config,
io.cloudbeaver.model.fs,
io.cloudbeaver.model.log,
io.cloudbeaver.model.rm,
io.cloudbeaver.model.rm.local,
io.cloudbeaver.model.rm.lock,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import org.jkiss.code.NotNull;

/**
* Abstract class that contains methods for loading configuration with gson.
*/
public abstract class BaseServerConfigurationController<T extends WebServerConfiguration>
implements WebServerConfigurationController<T> {

@NotNull
public Gson getGson() {
return getGsonBuilder().create();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ public abstract class BaseWebApplication extends BaseApplicationImpl implements
public static final String CLI_PARAM_WEB_CONFIG = "-web-config";
public static final String LOGBACK_FILE_NAME = "logback.xml";


private static final Log log = Log.getLog(BaseWebApplication.class);

private String instanceId;
Expand Down
Loading

0 comments on commit 5f95f45

Please sign in to comment.