[webkit-changes] cvs commit: WebCore/khtml/xml dom_atomicstring.cpp
Maciej
mjs at opensource.apple.com
Mon Jun 27 22:47:26 PDT 2005
mjs 05/06/27 22:47:26
Modified: . ChangeLog
khtml/xml dom_atomicstring.cpp
Log:
Remove accidentally committed code that breaks the build. Oops!
* khtml/xml/dom_atomicstring.cpp:
(DOM::AtomicString::expand):
(DOM::AtomicString::shrink):
Revision Changes Path
1.4320 +8 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4319
retrieving revision 1.4320
diff -u -r1.4319 -r1.4320
--- ChangeLog 28 Jun 2005 01:54:29 -0000 1.4319
+++ ChangeLog 28 Jun 2005 05:47:22 -0000 1.4320
@@ -1,3 +1,11 @@
+2005-06-27 Maciej Stachowiak <mjs at apple.com>
+
+ Remove accidentally committed code that breaks the build. Oops!
+
+ * khtml/xml/dom_atomicstring.cpp:
+ (DOM::AtomicString::expand):
+ (DOM::AtomicString::shrink):
+
2005-06-26 Maciej Stachowiak <mjs at apple.com>
Reviewed by Darin.
1.5 +0 -2 WebCore/khtml/xml/dom_atomicstring.cpp
Index: dom_atomicstring.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/xml/dom_atomicstring.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dom_atomicstring.cpp 28 Jun 2005 01:54:34 -0000 1.4
+++ dom_atomicstring.cpp 28 Jun 2005 05:47:26 -0000 1.5
@@ -319,13 +319,11 @@
void AtomicString::expand()
{
- printf("grow from size %d to size %d at keyCount %d\n", m_tableSize, m_minTableSize : m_tableSize * 2, m_keyCount);
rehash(_tableSize == 0 ? _minTableSize : _tableSize * 2);
}
void AtomicString::shrink()
{
- printf("shrink from size %d to size %d at keyCount %d\n", m_tableSize, m_tableSize/2, m_keyCount);
rehash(_tableSize / 2);
}
More information about the webkit-changes
mailing list