Commit 1a45ecd0 authored by Noel Alonso's avatar Noel Alonso
Browse files

Elimina instrucción no necesaria

parent 90551b09
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@ public abstract class CategoryCancelledEvent extends EventError {

	public CategoryCancelledEvent(String type) {
		super(type);
		this.setCategory(category);
	}

	public CategoryDTO getCategory() {
+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ public abstract class CategoryEvent extends Event {

	public CategoryEvent(String type) {
		super(type);
		this.setCategory(category);
	}

	public CategoryDTO getCategory() {
+0 −1
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@ public abstract class LayerCancelledEvent extends EventError {

	public LayerCancelledEvent(String type) {
		super(type);
		this.setLayer(layer);
	}

	public LayerDTO getLayer() {
+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ public abstract class LayerEvent extends Event {

	public LayerEvent(String type) {
		super(type);
		this.setLayer(layer);
	}

	public LayerDTO getLayer() {
+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ public abstract class LayerRefreshEvent extends Event {

	public LayerRefreshEvent(String type) {
		super(type);
		this.setLayer(layer);
	}

	public LayerWMSDTO getLayer() {
Loading