Fix web modules

This commit is contained in:
Emux 2017-09-05 15:45:08 +03:00
parent 07138f3240
commit b59f20ef49
3 changed files with 4 additions and 4 deletions

View File

@ -96,4 +96,5 @@ tasks.withType(JavaCompile) { compileTask ->
clean {
delete "assets"
delete "war/WEB-INF"
}

View File

@ -93,4 +93,5 @@ tasks.withType(JavaCompile) { compileTask ->
clean {
delete "assets"
delete "war/WEB-INF"
}

View File

@ -15,17 +15,15 @@
*/
package org.oscim.theme;
import java.io.InputStream;
/**
* A utility class with theme specific helper methods.
*/
public final class ThemeUtils {
/**
* Check if the given InputStream is a Mapsforge render theme.
* Check if the given theme is a Mapsforge one.
*/
public static boolean isMapsforgeTheme(InputStream is) {
public static boolean isMapsforgeTheme(ThemeFile theme) {
// TODO
return false;
}