We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b191b4 commit 0d63707Copy full SHA for 0d63707
sierra-tools/dtd-encoder/src/main/java/org/httprpc/sierra/tools/dtd/DTDEncoder.java
@@ -49,8 +49,6 @@
49
import java.util.Map;
50
import java.util.Properties;
51
52
-import static org.httprpc.sierra.UILoader.*;
53
-
54
public class DTDEncoder extends Encoder<Void> {
55
private List<Class<?>> typeList;
56
private Map<Class<?>, String> tags;
@@ -280,8 +278,8 @@ public static void main(String[] args) throws Exception {
280
278
281
279
var tags = new HashMap<Class<?>, String>();
282
283
- for (var tag : getTags()) {
284
- var type = (Class<?>)getType(tag);
+ for (var tag : UILoader.getTags()) {
+ var type = (Class<?>)UILoader.getType(tag);
285
286
tags.put(type, tag);
287
0 commit comments