Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
fix broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Aug 25, 2011
1 parent 8eb6851 commit f604c02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
* @author Alex Eng <a href="mailto:aeng@redhat.com">aeng@redhat.com</a>
*
**/
public class PoReader extends AbstractPushGlossaryReader
public class GlossaryPoReader extends AbstractPushGlossaryReader
{

private static final Logger log = LoggerFactory.getLogger(PoReader.class);
private static final Logger log = LoggerFactory.getLogger(GlossaryPoReader.class);

@Override
public Glossary extractGlossary(File glossaryFile) throws IOException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class PushGlossaryCommand extends ConfigurableCommand
private final URI uri;

{
glossaryReaders.put("po", new PoReader());
glossaryReaders.put("po", new GlossaryPoReader());
// strategies.put("cvs", new cvsStrategy());
// strategies.put("po", new poStrategy());
}
Expand Down

0 comments on commit f604c02

Please sign in to comment.