minor fix: remove unnecessary init
authorbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 2 Mar 2012 15:08:16 +0000 (15:08 +0000)
committerbsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Fri, 2 Mar 2012 15:08:16 +0000 (15:08 +0000)
Review URL: http://codereview.appspot.com/5720048/

git-svn-id: http://skia.googlecode.com/svn/trunk@3301 2bbb7eff-a529-9590-31e7-b0007b416f81

src/gpu/GrPathRendererChain.cpp

index a45437b..ad7f3db 100644 (file)
@@ -17,9 +17,8 @@ GrPathRendererChain::GrPathRendererChain(GrContext* context, UsageFlags flags)
     : fInit(false)
     , fOwner(context)
     , fFlags(flags) {
-    fInit = false;
 }
-    
+
 GrPathRendererChain::~GrPathRendererChain() {
     for (int i = 0; i < fChain.count(); ++i) {
         fChain[i]->unref();