From 3af6a0d0bfe3be35a3bd4a6360edf93d6c25dad2 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 29 Jun 2015 11:59:59 +1200 Subject: Some cleanup and license note --- src/org/traccar/BaseProtocol.java | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'src/org/traccar/BaseProtocol.java') diff --git a/src/org/traccar/BaseProtocol.java b/src/org/traccar/BaseProtocol.java index f8bf7ef30..94dd46ac4 100644 --- a/src/org/traccar/BaseProtocol.java +++ b/src/org/traccar/BaseProtocol.java @@ -1,3 +1,18 @@ +/* + * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.traccar; import org.traccar.database.ActiveDevice; @@ -15,7 +30,7 @@ public abstract class BaseProtocol implements Protocol { public BaseProtocol(String name) { this.name = name; - this.loadCommandsTemplates(commandTemplates); + this.initCommandsTemplates(commandTemplates); } public String getName() { @@ -35,6 +50,7 @@ public abstract class BaseProtocol implements Protocol { activeDevice.write(response); } - protected abstract void loadCommandsTemplates(Map templates); + protected void initCommandsTemplates(Map templates) { + } } -- cgit v1.2.3