Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile
In directory usw-pr-cvs1:/tmp/cvs-serv19046
Modified Files:
ProfileConfiguration.java
Log Message:
Fix from sadda for getProperty with a defaultValue
Index: ProfileConfiguration.java
===================================================================
RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile/ProfileConfiguration.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** ProfileConfiguration.java 27 Aug 2002 16:43:12 -0000 1.4
--- ProfileConfiguration.java 27 Aug 2002 16:44:29 -0000 1.5
***************
*** 61,65 ****
*/
public String getProperty(String key, String defaultValue) {
! return props.getProperty(key, String defaultValue);
}
--- 61,65 ----
*/
public String getProperty(String key, String defaultValue) {
! return props.getProperty(key, defaultValue);
}
|