Skip to content

Commit

Permalink
Merge pull request #727 from WildMeOrg/package-reference-updates
Browse files Browse the repository at this point in the history
correct package/import to point to org.ecocean
  • Loading branch information
naknomum authored Sep 4, 2024
2 parents b6202f1 + bbfe005 commit 70e1034
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/ecocean/resumableupload/FlowInfo.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ec.com.mapache.ngflow.upload;
package org.ecocean.resumableupload;

import java.io.File;
import java.util.HashSet;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ec.com.mapache.ngflow.upload;
package org.ecocean.resumableupload;

import java.io.*;
import java.util.HashMap;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/ecocean/resumableupload/HttpUtils.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ec.com.mapache.ngflow.upload;
package org.ecocean.resumableupload;

public class HttpUtils {
public static boolean isEmpty(String value) {
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/org/ecocean/resumableupload/UploadServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.servlet.ServletFileUpload;

import ec.com.mapache.ngflow.upload.FlowInfo;
import ec.com.mapache.ngflow.upload.FlowInfoStorage;
import ec.com.mapache.ngflow.upload.HttpUtils;
import org.ecocean.resumableupload.FlowInfo;
import org.ecocean.resumableupload.FlowInfoStorage;
import org.ecocean.resumableupload.HttpUtils;

import org.ecocean.AccessControl;
import org.ecocean.CommonConfiguration;
Expand Down

0 comments on commit 70e1034

Please sign in to comment.