Skip to content

v0.2.51..v0.2.52 changeset DeleteMapResourcesCommandFactory.java

Garret Voltz edited this page Jan 15, 2020 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/controllers/osm/map/DeleteMapResourcesCommandFactory.java b/hoot-services/src/main/java/hoot/services/controllers/osm/map/DeleteMapResourcesCommandFactory.java
index 4f849ba..b81af84 100644
--- a/hoot-services/src/main/java/hoot/services/controllers/osm/map/DeleteMapResourcesCommandFactory.java
+++ b/hoot-services/src/main/java/hoot/services/controllers/osm/map/DeleteMapResourcesCommandFactory.java
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2016, 2017 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2016, 2017, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 package hoot.services.controllers.osm.map;
 
@@ -32,7 +32,7 @@ import org.springframework.stereotype.Component;
 @Component
 class DeleteMapResourcesCommandFactory {
 
-    DeleteMapResourcesCommand build(String mapName, Class<?> caller) {
-        return new DeleteMapResourcesCommand(mapName, caller);
+    DeleteMapResourcesCommand build(String mapName, String jobId, Class<?> caller) {
+        return new DeleteMapResourcesCommand(mapName, jobId, caller);
     }
 }
Clone this wiki locally