⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 201552 in webkit


Ignore:
Timestamp:
Jun 1, 2016, 8:11:11 AM (10 years ago)
Author:
Antti Koivisto
Message:

Remove accidental fprintf.

  • platform/graphics/FontCache.cpp:

(WebCore::FontCache::precache):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r201551 r201552  
     12016-06-01  Antti Koivisto  <antti@apple.com>
     2
     3        Remove accidental fprintf.
     4
     5        * platform/graphics/FontCache.cpp:
     6        (WebCore::FontCache::precache):
     7
    182016-05-31  Antti Koivisto  <antti@apple.com>
    29
  • trunk/Source/WebCore/platform/graphics/FontCache.cpp

    r201551 r201552  
    540540
    541541        if (platformData) {
    542             auto r = fontPlatformDataCache().add(key, WTFMove(platformData));
    543             fprintf(stderr, "success %d\n", r.isNewEntry);
     542            fontPlatformDataCache().add(key, WTFMove(platformData));
    544543            return;
    545544        }
Note: See TracChangeset for help on using the changeset viewer.