mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-5410 Comment out unused code.
X-SVN-Rev: 20498
This commit is contained in:
parent
46c7b6f222
commit
1699589ce9
2 changed files with 5 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue