Changeset 36170 in osm for applications/editors/josm
- Timestamp:
- 2023-10-15T20:20:28+02:00 (13 months ago)
- Location:
- applications/editors/josm/plugins/pointInfo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pointInfo/build.xml
r36122 r36170 3 3 4 4 <!-- enter the SVN commit message --> 5 <property name="commit.message" value="PointInfo: Switch to SVG icons"/>5 <property name="commit.message" value="PointInfo: Fix NPE issue"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 7 <property name="plugin.main.version" value="18723"/> -
applications/editors/josm/plugins/pointInfo/src/org/openstreetmap/josm/plugins/pointinfo/ruian/AddrPlaces.java
r32848 r36170 74 74 75 75 public void setCisloTyp(String v) { 76 m_cislo_typ = v;76 m_cislo_typ = (v == null ? "" : v); 77 77 } 78 78 79 79 public void setCisloDomovni(String v) { 80 m_cislo_domovni = v;80 m_cislo_domovni = (v == null ? "" : v); 81 81 } 82 82 83 83 public void setCisloOrientacni(String v) { 84 m_cislo_orientacni = v;84 m_cislo_orientacni = (v == null ? "" : v); 85 85 } 86 86 … … 90 90 91 91 public void setUlice(String v) { 92 m_ulice = v;92 m_ulice = (v == null ? "" : v); 93 93 } 94 94 … … 98 98 99 99 public void setCastObce(String v) { 100 m_cast_obce = v;100 m_cast_obce = (v == null ? "" : v); 101 101 } 102 102 … … 106 106 107 107 public void setMestskaCast(String v) { 108 m_mestska_cast = v;108 m_mestska_cast = (v == null ? "" : v); 109 109 } 110 110 … … 114 114 115 115 public void setObec(String v) { 116 m_obec = v;116 m_obec = (v == null ? "" : v); 117 117 } 118 118 … … 122 122 123 123 public void setOkres(String v) { 124 m_okres = v;124 m_okres = (v == null ? "" : v); 125 125 } 126 126 … … 130 130 131 131 public void setKraj(String v) { 132 m_kraj = v;132 m_kraj = (v == null ? "" : v); 133 133 } 134 134 135 135 public void setPsc(String v) { 136 m_psc = v;136 m_psc = (v == null ? "" : v); 137 137 } 138 138
Note:
See TracChangeset
for help on using the changeset viewer.