diff options
author | Jamie Gennis <jgennis@google.com> | 2010-07-19 16:09:26 -0700 |
---|---|---|
committer | Jamie Gennis <jgennis@google.com> | 2010-07-19 16:09:26 -0700 |
commit | ff7049ab2886acc73e145367118646f7741ce333 (patch) | |
tree | a57f82a48605aca4b9a40b95028efa976742d4b3 /libs | |
parent | a5fe776a7933b2241858ef83f01b812c7badc231 (diff) | |
download | frameworks_base-ff7049ab2886acc73e145367118646f7741ce333.zip frameworks_base-ff7049ab2886acc73e145367118646f7741ce333.tar.gz frameworks_base-ff7049ab2886acc73e145367118646f7741ce333.tar.bz2 |
Remove some debug logging that I accidentally committed.
Change-Id: Ib182455fad5e5b3f3f59b3ff24f59dcd7f638292
Diffstat (limited to 'libs')
-rw-r--r-- | libs/surfaceflinger_client/Surface.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libs/surfaceflinger_client/Surface.cpp b/libs/surfaceflinger_client/Surface.cpp index 1de3a4f..5ab72cd 100644 --- a/libs/surfaceflinger_client/Surface.cpp +++ b/libs/surfaceflinger_client/Surface.cpp @@ -385,8 +385,6 @@ sp<Surface> Surface::readFromParcel(const Parcel& data) { if (surface == 0) { surface = new Surface(data, binder); sCachedSurfaces.add(binder, surface); - } else { - LOGW("Reusing surface!"); } if (surface->mSurface == 0) { surface = 0; @@ -1024,4 +1022,3 @@ bool Surface::BufferInfo::validateBuffer(const sp<GraphicBuffer>& buffer) const // ---------------------------------------------------------------------------- }; // namespace android - |