protected WireFeed createRealFeed(String type, SyndFeed syndFeed) {
   Channel channel = (Channel) super.createRealFeed(type, syndFeed);
   channel.setLanguage(syndFeed.getLanguage()); // c
   channel.setCopyright(syndFeed.getCopyright()); // c
   channel.setPubDate(syndFeed.getPublishedDate()); // c
   if (syndFeed.getAuthors() != null && syndFeed.getAuthors().size() > 0) {
     SyndPerson author = (SyndPerson) syndFeed.getAuthors().get(0);
     channel.setManagingEditor(author.getName());
   }
   return channel;
 }