Skip to content

Commit 7f3b3df

Browse files
committed
Add deprecated fields back to Image
1 parent b95503f commit 7f3b3df

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/main/java/com/creatubbles/api/core/Image.java

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
package com.creatubbles.api.core;
22

3+
import java.util.List;
34
import java.util.Map;
45

56
public class Image {
6-
7+
/**
8+
* @see #links
9+
*/
10+
@Deprecated
11+
public String url;
12+
13+
@Deprecated
14+
public List<Creator> creators;
15+
16+
/**
17+
* @see #links
18+
*/
19+
@Deprecated
20+
public String store_dir;
21+
722
public Map<ImageType, String> links;
823

924
public enum ImageType {

0 commit comments

Comments
 (0)