Reformat common
[sdc.git] / common / onap-tosca-datatype / src / main / java / org / onap / sdc / tosca / datatypes / model / extension / ServiceFilter.java
index 572af3d..be1d1d9 100644 (file)
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.onap.sdc.tosca.datatypes.model.extension;
 
 import org.onap.sdc.tosca.datatypes.model.NodeFilter;
 
-
 public class ServiceFilter extends NodeFilter {
 
     private Object tosca_id;
@@ -39,9 +37,7 @@ public class ServiceFilter extends NodeFilter {
         if (!(o instanceof ServiceFilter)) {
             return false;
         }
-
         ServiceFilter that = (ServiceFilter) o;
-
         return getTosca_id() != null ? getTosca_id().equals(that.getTosca_id()) : that.getTosca_id() == null;
     }