From 0d912a3de92d06c89a7ec3919a04e0c32be13149 Mon Sep 17 00:00:00 2001 From: allo Date: Wed, 24 Aug 2005 13:05:47 +0000 Subject: [PATCH] removed not needed copyFile Method. (same exists in Skins_p.java (there its used)) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@585 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/Language_p.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/htroot/Language_p.java b/htroot/Language_p.java index 7d4b0319c..eed851fc0 100644 --- a/htroot/Language_p.java +++ b/htroot/Language_p.java @@ -78,18 +78,6 @@ public class Language_p { return map; } - private static boolean copyFile(File from, File to){ - if(from == null || to == null){ - return false; - } - try{ - serverFileUtils.copy(from, to); - return true; - }catch(IOException e){ - return false; - } - } - private static boolean changeLang(serverSwitch env, String langPath, String lang){ if(lang.equals("default")){ env.setConfig("htLocaleSelection", "default");