ICU-5410 Comment out unused code.

X-SVN-Rev: 20498
This commit is contained in:
George Rhoten 2006-10-05 22:40:05 +00:00
parent 46c7b6f222
commit 1699589ce9
2 changed files with 5 additions and 7 deletions

View file

@ -86,7 +86,7 @@ public final class ICUDebug {
return false;
}
public static String value(String arg) {
/* public static String value(String arg) {
String result = "false";
if (debug) {
int index = params.indexOf(arg);
@ -104,7 +104,7 @@ public final class ICUDebug {
if (help) System.out.println("\nICUDebug.value(" + arg + ") = " + result);
}
return result;
}
}*/
/* static public void main(String[] args) {
// test

View file

@ -634,19 +634,17 @@ public class HebrewCalendar extends Calendar {
return day;
}
/**
/*
* Find the day of the week for a given day
*
* @param day The # of days since the start of the Hebrew calendar,
* 1-based (i.e. 1/1/1 AM is day 1).
*/
///CLOVER:OFF
private static int absoluteDayToDayOfWeek(long day)
/*private static int absoluteDayToDayOfWeek(long day)
{
// We know that 1/1/1 AM is a Monday, which makes the math easy...
return (int)(day % 7) + 1;
}
///CLOVER:ON
}*/
/**
* Returns the the type of a given year.