Skip to content

Commit e5f712e

Browse files
authored
Uncomment getResourceAsStream method in Class.java
1 parent fc491b4 commit e5f712e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Ports/CLDC11/src/java/lang/Class.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ public java.lang.String getName(){
6767
* In the absolute format, the programmer provides a fully qualified name that includes both the full path and the name of the resource inside the JAR file. In the path names, the character "/" is used as the separator.
6868
* In the relative format, the programmer provides only the name of the actual resource. Relative names are converted to absolute names by the system by prepending the resource name with the fully qualified package name of class upon which the getResourceAsStream method was called.
6969
*/
70-
/*public java.io.InputStream getResourceAsStream(java.lang.String name){
70+
public java.io.InputStream getResourceAsStream(java.lang.String name){
7171
return null; //TODO codavaj!!
72-
}*/
72+
}
7373

7474
/**
7575
* Determines if this Class object represents an array class.

0 commit comments

Comments
 (0)