1616
1717package org .labkey .genotyping .galaxy ;
1818
19- import org .apache .logging .log4j .Logger ;
2019import org .apache .logging .log4j .LogManager ;
20+ import org .apache .logging .log4j .Logger ;
2121import org .labkey .api .data .Container ;
2222import org .labkey .api .data .PropertyManager ;
23+ import org .labkey .api .data .PropertyManager .WritablePropertyMap ;
2324import org .labkey .api .security .User ;
2425
2526import java .util .Map ;
@@ -50,7 +51,7 @@ public static GalaxyManager get()
5051
5152 public void saveSettings (Container c , GalaxyFolderSettings settings )
5253 {
53- PropertyManager . PropertyMap map = PropertyManager .getWritableProperties (c , FOLDER_CATEGORY , true );
54+ WritablePropertyMap map = PropertyManager .getWritableProperties (c , FOLDER_CATEGORY , true );
5455 map .put (GALAXY_URL , settings .getGalaxyURL ());
5556 map .save ();
5657 }
@@ -73,7 +74,7 @@ public String getGalaxyURL()
7374
7475 public void saveUserSettings (Container c , User user , GalaxyUserSettings userSettings )
7576 {
76- PropertyManager . PropertyMap map = PropertyManager .getWritableProperties (user , c , USER_CATEGORY , true );
77+ WritablePropertyMap map = PropertyManager .getWritableProperties (user , c , USER_CATEGORY , true );
7778 map .put (GALAXY_KEY , userSettings .getGalaxyKey ());
7879 map .save ();
7980 }
0 commit comments