Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
violethaze74
appstream
Commits
b9d11934
Commit
b9d11934
authored
Aug 15, 2019
by
Matthias Klumpp
Browse files
trivial: Remove superfluous print statements
parent
800debdc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/as-screenshot.c
View file @
b9d11934
...
...
@@ -341,10 +341,8 @@ as_screenshot_rebuild_suitable_media_list (AsScreenshot *screenshot)
priv
->
videos_lang
=
g_ptr_array_new_with_free_func
((
GDestroyNotify
)
g_object_unref
);
for
(
guint
i
=
0
;
i
<
priv
->
videos
->
len
;
i
++
)
{
AsVideo
*
vid
=
AS_VIDEO
(
g_ptr_array_index
(
priv
->
videos
,
i
));
g_print
(
"Check: %s vs %s
\n
"
,
as_video_get_locale
(
vid
),
as_screenshot_get_active_locale
(
screenshot
));
if
(
!
as_utils_locale_is_compatible
(
as_video_get_locale
(
vid
),
as_screenshot_get_active_locale
(
screenshot
)))
continue
;
g_print
(
"PASS
\n
"
);
g_ptr_array_add
(
priv
->
videos_lang
,
g_object_ref
(
vid
));
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment