openvidu-server: removed unused externalizedProperties attr from OpenviduConfig

pull/405/head
pabloFuente 2020-02-23 20:05:02 +01:00
parent f3d2916656
commit 3e6ff0cc98
1 changed files with 0 additions and 5 deletions

View File

@ -190,7 +190,6 @@ public class OpenviduConfig {
public static List<String> kmsUrisList = new ArrayList<>();
public static List<Header> webhookHeadersList = new ArrayList<>();
public static List<CDREventName> webhookEventsList = new ArrayList<>();
public static Properties externalizedProperties;
@Autowired
protected Environment env;
@ -365,10 +364,6 @@ public class OpenviduConfig {
return !this.springConfigLocation.isEmpty();
}
public Properties getExternalizedProperties() {
return externalizedProperties;
}
public URI checkWebsocketUri(String uri) throws Exception {
try {
if (!uri.startsWith("ws://") || uri.startsWith("wss://")) {