File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
dts-generator/src/main/java/com/telerik/dts Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ public String generateDtsContent(List<JavaClass> javaClasses) {
59
59
60
60
if (currentFileClassname .startsWith ("java.util.function" ) ||
61
61
currentFileClassname .startsWith ("android.support.v4.media.routing.MediaRouterJellybeanMr1" ) ||
62
- currentFileClassname .startsWith ("android.support.v4.media.routing.MediaRouterJellybeanMr2" )) {
62
+ currentFileClassname .startsWith ("android.support.v4.media.routing.MediaRouterJellybeanMr2" ) ||
63
+ currentFileClassname .endsWith ("package-info" )) {
63
64
continue ;
64
65
}
65
66
Original file line number Diff line number Diff line change 12
12
* Created by plamen5kov on 6/17/16.
13
13
*/
14
14
public class FileWriter {
15
- private final String DEFAULT_DTS_FILE_NAME = "base " ;
15
+ private final String DEFAULT_DTS_FILE_NAME = "android " ;
16
16
17
17
private String defaultDtsFileName ;
18
18
private boolean writeMultipleFiles ;
You can’t perform that action at this time.
0 commit comments