Title: [114670] trunk/Source/WebCore
Revision
114670
Author
[email protected]
Date
2012-04-19 14:22:29 -0700 (Thu, 19 Apr 2012)

Log Message

Remove unnecessary assignment in CSSParser::parseCubicBezierTimingFunctionValue().
https://bugs.webkit.org/show_bug.cgi?id=84368

Reviewed by Simon Fraser.

No new tests / code cleanup only.

* css/CSSParser.cpp:
(WebCore::CSSParser::parseCubicBezierTimingFunctionValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (114669 => 114670)


--- trunk/Source/WebCore/ChangeLog	2012-04-19 21:20:23 UTC (rev 114669)
+++ trunk/Source/WebCore/ChangeLog	2012-04-19 21:22:29 UTC (rev 114670)
@@ -1,5 +1,17 @@
 2012-04-19  Luke Macpherson  <[email protected]>
 
+        Remove unnecessary assignment in CSSParser::parseCubicBezierTimingFunctionValue().
+        https://bugs.webkit.org/show_bug.cgi?id=84368
+
+        Reviewed by Simon Fraser.
+
+        No new tests / code cleanup only.
+
+        * css/CSSParser.cpp:
+        (WebCore::CSSParser::parseCubicBezierTimingFunctionValue):
+
+2012-04-19  Luke Macpherson  <[email protected]>
+
         Initialize all member variables in CSSImageSetValue's copy constructor.
         https://bugs.webkit.org/show_bug.cgi?id=84379
 

Modified: trunk/Source/WebCore/css/CSSParser.cpp (114669 => 114670)


--- trunk/Source/WebCore/css/CSSParser.cpp	2012-04-19 21:20:23 UTC (rev 114669)
+++ trunk/Source/WebCore/css/CSSParser.cpp	2012-04-19 21:22:29 UTC (rev 114670)
@@ -3658,7 +3658,7 @@
         return true;
     if (!isComma(v))
         return false;
-    v = args->next();
+    args->next();
     return true;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to