File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed
src/test/java/com/github/stickerifier/stickerify/junit Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change 11package 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}
You can’t perform that action at this time.
0 commit comments