sort list of fonts from PGraphicsPDF.listFonts()

This commit is contained in:
benfry
2008-06-16 12:00:13 +00:00
parent 9a9ad9cedf
commit f14a0c4e53
+1 -2
View File
@@ -624,8 +624,7 @@ public class PGraphicsPDF extends PGraphicsJava2D {
//System.out.println(entry.getKey() + "-->" + entry.getValue());
list[count++] = (String) entry.getKey();
}
//return PApplet.sort(list);
return list;
return PApplet.sort(list);
}