com.manolovn.cssdroid.util.CssDroidFileUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cssdroid Show documentation
Show all versions of cssdroid Show documentation
Convert CSS files to Android styles
The newest version!
package com.manolovn.cssdroid.util;
import java.io.File;
/**
* File utils
*/
public class CssDroidFileUtils {
public static String removeExtension(File file) {
return file.getName().substring(0, file.getName().lastIndexOf('.'));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy