Your’e using “Manage Issue Based Magazine” Theme as far as I can see.
Your theme have this on their template-magazine.php in line number 109.
When a featured image is not selected the placeholder image will automatically appear.
<?php
$mim_issue_magazineurl = wp_get_attachment_url( get_post_thumbnail_id(get_the_ID(), 'full' ) );
if( !empty( $mim_issue_magazineurl ) ) { ?>
<div class="entry-thumbnail"><a href="<?php the_permalink(); ?>"><img alt="" src="<?php echo $mim_issue_magazineurl; ?>" class="img-responsive"></a></div>
<?php } else { ?>
<div class="entry-thumbnail"><a href="<?php the_permalink(); ?>"><img alt="" src="<?php echo MIM_ISSUE_THEME_URI. '/images/No-Image-1600x900.png'; ?>" class="img-responsive"></a></div>
<?php } ?>
You can remove the image from there.
Thanks