Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/profile
In directory usw-pr-cvs1:/tmp/cvs-serv18480
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.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** ProfileConfiguration.java 9 Nov 2001 18:41:23 -0000 1.3
--- ProfileConfiguration.java 27 Aug 2002 16:43:12 -0000 1.4
***************
*** 1,7 ****
-
/*
* ProfileConfiguration.java $Revision$ $Date$
*
* Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved.
*
* The contents of this file are subject to the Blocks Public License (the
--- 1,7 ----
/*
* ProfileConfiguration.java $Revision$ $Date$
*
* Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved.
+ * Copyright (c) 2002 Huston Franklin All rights reserved.
*
* The contents of this file are subject to the Blocks Public License (the
***************
*** 61,65 ****
*/
public String getProperty(String key, String defaultValue) {
! return props.getProperty(key);
}
--- 61,65 ----
*/
public String getProperty(String key, String defaultValue) {
! return props.getProperty(key, String defaultValue);
}
|