X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=bundles%2FUiConfigBundle.java;h=2c31d097c56bc8e8a23533847262cc9d4e9b0a41;hb=HEAD;hp=8b2c008c41c9b78fca3c586768b14a27bbe8b43e;hpb=258e065f81071a861711ef935dca3ec5563f4360;p=fanfix.git diff --git a/bundles/UiConfigBundle.java b/bundles/UiConfigBundle.java deleted file mode 100644 index 8b2c008..0000000 --- a/bundles/UiConfigBundle.java +++ /dev/null @@ -1,39 +0,0 @@ -package be.nikiroo.fanfix.bundles; - -import java.io.File; -import java.io.IOException; - -import be.nikiroo.utils.resources.Bundle; - -/** - * This class manages the configuration of UI of the application (colours and - * behaviour) - * - * @author niki - */ -public class UiConfigBundle extends Bundle { - public UiConfigBundle() { - super(UiConfig.class, Target.ui, new UiConfigBundleDesc()); - } - - /** - * Update resource file. - * - * @param args - * not used - * - * @throws IOException - * in case of I/O error - */ - public static void main(String[] args) throws IOException { - String path = new File(".").getAbsolutePath() - + "/src/be/nikiroo/fanfix/bundles/"; - new UiConfigBundle().updateFile(path); - System.out.println("Path updated: " + path); - } - - @Override - protected String getBundleDisplayName() { - return "UI configuration options"; - } -}