Added header parameters to JSON pages, Some cleanup of google assistant example code

This commit is contained in:
Ziver Koc 2020-09-04 01:10:55 +02:00
parent 0632804bd4
commit 9bca47d566
13 changed files with 806 additions and 15 deletions

View file

@ -35,8 +35,6 @@ import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Created by Ziver on 2015-02-18.
*
* Protocol Specification: http://developer.telldus.com/doxygen/TellStick.html
*/
public class TellstickParser {
@ -53,6 +51,7 @@ public class TellstickParser {
/**
* Will decode the given data and return a list with device and data objects
*
* @param data
* @return a list with decoded objects or empty list if there was an error
*/
@ -114,7 +113,7 @@ public class TellstickParser {
public static void registerProtocol(Class<? extends TellstickProtocol> protClass) {
try {
registerProtocol( protClass.newInstance() );
registerProtocol(protClass.newInstance());
} catch (Exception e) {
logger.log(Level.SEVERE, null, e);
}