Skip to content

Commit

Permalink
FILEUPLOAD-319 - Turn Constants into an interface
Browse files Browse the repository at this point in the history
  • Loading branch information
arturobernalg committed Apr 25, 2021
1 parent a27bfc5 commit 58cb3d9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/java/org/apache/commons/fileupload2/Constants.java
Expand Up @@ -21,12 +21,11 @@
*
* @since 1.4
*/
public final class Constants {
public interface Constants {

/**
* The content type used in several tests.
*/
public static final String CONTENT_TYPE = "multipart/form-data; boundary=---1234";
String CONTENT_TYPE = "multipart/form-data; boundary=---1234";

private Constants() {}
}

0 comments on commit 58cb3d9

Please sign in to comment.