Removed space before -- for consistency with code style.

This commit is contained in:
Nick Lockwood
2015-05-12 10:10:39 +01:00
parent bf1d7eacfd
commit 9175721f07
3 changed files with 3 additions and 3 deletions

View File

@@ -624,7 +624,7 @@ static void layoutNodeImpl(css_node_t *node, float parentMaxWidth, css_direction
// If there's only one element, then it's bigger than the content // If there's only one element, then it's bigger than the content
// and needs its own line // and needs its own line
i != startLine) { i != startLine) {
nonFlexibleChildrenCount --; nonFlexibleChildrenCount--;
alreadyComputedNextLayout = 1; alreadyComputedNextLayout = 1;
break; break;
} }

View File

@@ -520,7 +520,7 @@ var computeLayout = (function() {
// If there's only one element, then it's bigger than the content // If there's only one element, then it's bigger than the content
// and needs its own line // and needs its own line
i !== startLine) { i !== startLine) {
nonFlexibleChildrenCount --; nonFlexibleChildrenCount--;
alreadyComputedNextLayout = 1; alreadyComputedNextLayout = 1;
break; break;
} }

View File

@@ -609,7 +609,7 @@ public class LayoutEngine {
// If there's only one element, then it's bigger than the content // If there's only one element, then it's bigger than the content
// and needs its own line // and needs its own line
i != startLine) { i != startLine) {
nonFlexibleChildrenCount --; nonFlexibleChildrenCount--;
alreadyComputedNextLayout = 1; alreadyComputedNextLayout = 1;
break; break;
} }