[Httpunit-commit] CVS: httpunit/src/com/meterware/httpunit HttpUnitUtils.java,1.8,1.9
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-07-24 17:28:59
|
Update of /cvsroot/httpunit/httpunit/src/com/meterware/httpunit In directory usw-pr-cvs1:/tmp/cvs-serv874/src/com/meterware/httpunit Modified Files: HttpUnitUtils.java Log Message: moved pseudo server to its own package Index: HttpUnitUtils.java =================================================================== RCS file: /cvsroot/httpunit/httpunit/src/com/meterware/httpunit/HttpUnitUtils.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- HttpUnitUtils.java 6 Mar 2002 03:45:57 -0000 1.8 +++ HttpUnitUtils.java 24 Jul 2002 17:28:56 -0000 1.9 @@ -55,7 +55,8 @@ return result; } - static String stripQuotes( String value ) { + + public static String stripQuotes( String value ) { if (value.startsWith( "'" ) || value.startsWith( "\"" )) value = value.substring( 1 ); if (value.endsWith( "'" ) || value.endsWith( "\"" )) value = value.substring( 0, value.length()-1 ); return value; |