From: Christopher Michael Date: Wed, 24 Apr 2019 12:58:57 +0000 (-0400) Subject: static_libs/vg_common: Remove extra blank lines X-Git-Tag: submit/tizen/20190430.023700~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1671ce4e359b2ddfcabc47c8aecc534a519c6ce6;p=platform%2Fupstream%2Fefl.git static_libs/vg_common: Remove extra blank lines NB: No functional changes --- diff --git a/src/static_libs/vg_common/vg_common_svg.c b/src/static_libs/vg_common/vg_common_svg.c index 00e7e04..87fb431 100644 --- a/src/static_libs/vg_common/vg_common_svg.c +++ b/src/static_libs/vg_common/vg_common_svg.c @@ -94,7 +94,6 @@ _eet_for_ellipse_node(void) return eet; } - static inline Eet_Data_Descriptor* _eet_for_gradient_stops(void) { @@ -421,8 +420,6 @@ vg_common_svg_node_eet(void) _eet_style_property_node = _eet_for_style_property(); _eet_matrix3_node = _eet_for_eina_matrix3(); - - EET_DATA_DESCRIPTOR_ADD_MAPPING(eet_union, "doc", _eet_doc_node); EET_DATA_DESCRIPTOR_ADD_MAPPING(eet_union, "g", _eet_g_node); EET_DATA_DESCRIPTOR_ADD_MAPPING(eet_union, "defs", _eet_defs_node); @@ -438,7 +435,6 @@ vg_common_svg_node_eet(void) EET_DATA_DESCRIPTOR_ADD_UNION(_eet_vg_node, Svg_Node, "node", node, type, eet_union); - EET_DATA_DESCRIPTOR_ADD_LIST(_eet_vg_node, Svg_Node, "child", child, _eet_vg_node); EET_DATA_DESCRIPTOR_ADD_BASIC(_eet_vg_node, Svg_Node, "id", id, EET_T_STRING); EET_DATA_DESCRIPTOR_ADD_SUB(_eet_vg_node, Svg_Node, "style", style, _eet_style_property_node); @@ -964,7 +960,6 @@ _create_gradient_node(Efl_VG *vg) oom_error: ERR("OOM: Failed calloc()"); return grad; - } static void @@ -988,7 +983,6 @@ _apply_svg_property(Svg_Node *node, Efl_VG *vg) if (node->type == SVG_NODE_G) return; - // apply the fill style property style->fill.fill_rule = efl_gfx_shape_fill_rule_get(vg); style->fill.paint.none = EINA_FALSE; @@ -1022,8 +1016,6 @@ _apply_svg_property(Svg_Node *node, Efl_VG *vg) style->stroke.cap = efl_gfx_shape_stroke_cap_get(vg); style->stroke.join = efl_gfx_shape_stroke_join_get(vg); style->stroke.scale = efl_gfx_shape_stroke_scale_get(vg); - - } static void