inprogress
[jalview.git] / forester / java / src / org / forester / archaeopteryx / PdfExporter.java
index 28fdfa9..6305a85 100644 (file)
@@ -24,7 +24,7 @@
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 //
 // Contact: phylosoft @ gmail . com
-// WWW: www.phylosoft.org/forester
+// WWW: https://sites.google.com/site/cmzmasek/home/software/forester
 
 package org.forester.archaeopteryx;
 
@@ -92,10 +92,10 @@ final class PdfExporter {
         document.open();
         final DefaultFontMapper mapper = new DefaultFontMapper();
         FontFactory.registerDirectories();
-        if ( Util.isWindows() ) {
+        if ( AptxUtil.isWindows() ) {
             mapper.insertDirectory( "C:\\WINDOWS\\Fonts\\" );
         }
-        else if ( Util.isMac() ) {
+        else if ( AptxUtil.isMac() ) {
             mapper.insertDirectory( "/Library/Fonts/" );
             mapper.insertDirectory( "/System/Library/Fonts/" );
         }
@@ -111,7 +111,7 @@ final class PdfExporter {
             tree_panel.paintPhylogeny( g2, true, false, width, height, 0, 0 );
         }
         catch ( final Exception e ) {
-            Util.unexpectedException( e );
+            AptxUtil.unexpectedException( e );
         }
         finally {
             try {