ICU-5445 Remove unnecessary @deprecated javadoc comments in impl package

X-SVN-Rev: 21245
This commit is contained in:
Yoshito Umaoka 2007-03-14 13:51:43 +00:00
parent 03963fc153
commit 4d45efe122
3 changed files with 4 additions and 8 deletions

View File

@ -52,9 +52,6 @@ public class JDKTimeZone extends TimeZone {
* Constructs a JDKTimeZone given a java.util.TimeZone reference * Constructs a JDKTimeZone given a java.util.TimeZone reference
* which must not be null. * which must not be null.
* @param tz the time zone to wrap * @param tz the time zone to wrap
*
* @internal
* @deprecated This API is ICU internal only.
*/ */
public JDKTimeZone(java.util.TimeZone tz) { public JDKTimeZone(java.util.TimeZone tz) {
String id = tz.getID(); String id = tz.getID();

View File

@ -58,9 +58,6 @@ public class TimeZoneAdapter extends java.util.TimeZone {
/** /**
* Constructs an adapter for a com.ibm.icu.util.TimeZone object. * Constructs an adapter for a com.ibm.icu.util.TimeZone object.
*
* @internal
* @deprecated This API is ICU internal only.
*/ */
public TimeZoneAdapter(TimeZone zone) { public TimeZoneAdapter(TimeZone zone) {
this.zone = zone; this.zone = zone;

View File

@ -81,8 +81,10 @@ public class ResourceReader {
} }
/** /**
* @internal * Construct a reader object for the input stream associated with
* @deprecated This API is ICU internal only. * the given resource name.
* @param is the input stream of the resource
* @param resourceName the name of the resource
*/ */
public ResourceReader(InputStream is, String resourceName) { public ResourceReader(InputStream is, String resourceName) {
this.root = null; this.root = null;