Skip to content

Commit

Permalink
fix copyright
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Hanson <[email protected]>
  • Loading branch information
computergeek1507 committed Jan 17, 2024
1 parent a686a88 commit 01b6d86
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.openhab.binding.mqtt.fpp.internal;

Check failure on line 1 in bundles/org.openhab.binding.mqtt.fpp/src/main/java/org/openhab/binding/mqtt/fpp/internal/FPPCurrentPlaylist.java

View workflow job for this annotation

GitHub Actions / Build (Java 17, ubuntu-22.04)

Header is missing

/**
* Copyright (c) 2010-2019 Contributors to the openHAB project
* Copyright (c) 2010-2024 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.openhab.binding.mqtt.fpp.internal;

Check failure on line 1 in bundles/org.openhab.binding.mqtt.fpp/src/main/java/org/openhab/binding/mqtt/fpp/internal/FPPNextPlaylist.java

View workflow job for this annotation

GitHub Actions / Build (Java 17, ubuntu-22.04)

Header is missing

/**
* Copyright (c) 2010-2019 Contributors to the openHAB project
* Copyright (c) 2010-2024 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.openhab.binding.mqtt.fpp.internal;

Check failure on line 1 in bundles/org.openhab.binding.mqtt.fpp/src/main/java/org/openhab/binding/mqtt/fpp/internal/FPPPlaylist.java

View workflow job for this annotation

GitHub Actions / Build (Java 17, ubuntu-22.04)

Header is missing

/**
* Copyright (c) 2010-2019 Contributors to the openHAB project
* Copyright (c) 2010-2024 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.openhab.binding.mqtt.fpp.internal;

Check failure on line 1 in bundles/org.openhab.binding.mqtt.fpp/src/main/java/org/openhab/binding/mqtt/fpp/internal/FPPScheduler.java

View workflow job for this annotation

GitHub Actions / Build (Java 17, ubuntu-22.04)

Header is missing

/**
* Copyright (c) 2010-2019 Contributors to the openHAB project
* Copyright (c) 2010-2024 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.openhab.binding.mqtt.fpp.internal;

Check failure on line 1 in bundles/org.openhab.binding.mqtt.fpp/src/main/java/org/openhab/binding/mqtt/fpp/internal/FPPStatus.java

View workflow job for this annotation

GitHub Actions / Build (Java 17, ubuntu-22.04)

Header is missing

/**
* Copyright (c) 2010-2019 Contributors to the openHAB project
* Copyright (c) 2010-2024 Contributors to the openHAB project
*
* See the NOTICE file(s) distributed with this work for additional
* information.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@
*/
@NonNullByDefault
public class FPPPlayerHandler extends BaseThingHandler implements MqttMessageSubscriber {
// these are all constants used in color conversion calcuations.
// strings are necessary to prevent floating point loss of precision

private final Logger logger = LoggerFactory.getLogger(this.getClass());
private @Nullable MqttBrokerConnection connection;

Expand Down Expand Up @@ -261,7 +258,6 @@ private boolean executePost(String url, String json) {
try {
Properties header = new Properties();
header.put("Accept", "application/json");
// header.put("Connection", "keep-alive");
header.put("Content-Type", "application/json");
String response = HttpUtil.executeUrl("POST", "http://" + config.playerIP + url, header,
new ByteArrayInputStream(json.getBytes()), "application/json", 5000);
Expand Down

0 comments on commit 01b6d86

Please sign in to comment.