Skip to content

Commit

Permalink
Fixed spotless alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
milux committed Mar 19, 2024
1 parent 2acb451 commit 4b0b6f7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
Binary file modified examples/src/main/resources/etc/settings.mapdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,7 @@ import java.util.regex.Pattern
*
* @author Julian Schuette (julian.schuette@aisec.fraunhofer.de)
*/
class LuconEngine
/**
* Create a new LuconEngine which writes to a given output stream.
*
* @param out OutputStream to write Prolog engine outputs to, or null if output should not printed.
*/
(out: OutputStream?) {
class LuconEngine(out: OutputStream?) {
private val p: Prolog = Prolog()

val theory: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,19 @@ class SettingsComponent : Settings {
connectorConfig.let {
connectorConfig =
ConnectorConfig(
it.appstoreUrl, it.brokerUrl, it.ttpHost, it.ttpPort, it.acmeServerWebcon,
it.acmeDnsWebcon, it.acmePortWebcon, it.tosAcceptWebcon,
it.appstoreUrl,
it.brokerUrl,
it.ttpHost,
it.ttpPort,
it.acmeServerWebcon,
it.acmeDnsWebcon,
it.acmePortWebcon,
it.tosAcceptWebcon,
"https://daps.aisec.fraunhofer.de/v2",
it.keystoreName, it.keystorePassword, it.keystoreAliasName, it.truststoreName
it.keystoreName,
it.keystorePassword,
it.keystoreAliasName,
it.truststoreName
)
}
}
Expand Down

0 comments on commit 4b0b6f7

Please sign in to comment.