Index: applications/editors/josm/plugins/pdfimport/build.xml
===================================================================
--- applications/editors/josm/plugins/pdfimport/build.xml	(revision 25250)
+++ applications/editors/josm/plugins/pdfimport/build.xml	(revision 25260)
@@ -35,5 +35,5 @@
 	<property name="commit.message" value="Initial pdfimport version" />
 	<!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-	<property name="plugin.main.version" value="3835" />
+	<property name="plugin.main.version" value="3872" />
 
 
Index: applications/editors/josm/plugins/pdfimport/src/pdfimport/FilePlacement.java
===================================================================
--- applications/editors/josm/plugins/pdfimport/src/pdfimport/FilePlacement.java	(revision 25250)
+++ applications/editors/josm/plugins/pdfimport/src/pdfimport/FilePlacement.java	(revision 25260)
@@ -11,4 +11,5 @@
 import org.openstreetmap.josm.data.coor.LatLon;
 import org.openstreetmap.josm.data.projection.Projection;
+import org.openstreetmap.josm.data.projection.Projections;
 
 public class FilePlacement {
@@ -65,5 +66,5 @@
 
 		if (className != null) {
-			for(Projection proj: Projection.allProjections){
+			for(Projection proj: Projections.getProjections()){
 				if (proj.getClass().getCanonicalName().equals(className)){
 					projection = proj;
Index: applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java
===================================================================
--- applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java	(revision 25250)
+++ applications/editors/josm/plugins/pdfimport/src/pdfimport/LoadPdfDialog.java	(revision 25260)
@@ -41,4 +41,5 @@
 import org.openstreetmap.josm.data.osm.OsmPrimitive;
 import org.openstreetmap.josm.data.projection.Projection;
+import org.openstreetmap.josm.data.projection.Projections;
 import org.openstreetmap.josm.gui.layer.OsmDataLayer;
 import org.openstreetmap.josm.gui.progress.ProgressMonitor;
@@ -208,5 +209,5 @@
 		this.projectionCombo = new JComboBox();
 		this.projectionCombo.addItem("Select projection...");
-		for (Projection p: Projection.allProjections) {
+		for (Projection p: Projections.getProjections()) {
 			this.projectionCombo.addItem(p);
 		}
