Skip to content

Commit febe084

Browse files
Use final class instead
1 parent c1a49ce commit febe084

File tree

1 file changed

+13
-9
lines changed
  • src/test/java/com/github/stickerifier/stickerify/junit

1 file changed

+13
-9
lines changed
Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
package com.github.stickerifier.stickerify.junit;
22

3-
public interface Tags {
4-
String ANIMATED_STICKER = "AnimatedSticker";
5-
String CONCURRENT = "Concurrent";
6-
String IMAGE = "Image";
7-
String LOG = "Log";
8-
String MEDIA = "Media";
9-
String TELEGRAM_API = "TelegramApi";
10-
String UNSUPPORTED_FILE = "UnsupportedFile";
11-
String VIDEO = "Video";
3+
public final class Tags {
4+
public static final String ANIMATED_STICKER = "AnimatedSticker";
5+
public static final String CONCURRENT = "Concurrent";
6+
public static final String IMAGE = "Image";
7+
public static final String LOG = "Log";
8+
public static final String MEDIA = "Media";
9+
public static final String TELEGRAM_API = "TelegramApi";
10+
public static final String UNSUPPORTED_FILE = "UnsupportedFile";
11+
public static final String VIDEO = "Video";
12+
13+
private Tags() {
14+
throw new UnsupportedOperationException();
15+
}
1216
}

0 commit comments

Comments
 (0)