Ignore:
Timestamp:
2016-07-26T22:29:14+02:00 (8 years ago)
Author:
donvip
Message:

error-prone - fix warning SynchronizeOnNonFinalField

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/JMapViewer.java

    r32180 r32723  
    309309
    310310        if (markers && mapMarkerList != null) {
    311             synchronized (mapMarkerList) {
     311            synchronized (this) {
    312312                for (MapMarker marker : mapMarkerList) {
    313313                    if (marker.isVisible()) {
     
    323323
    324324        if (rectangles && mapRectangleList != null) {
    325             synchronized (mapRectangleList) {
     325            synchronized (this) {
    326326                for (MapRectangle rectangle : mapRectangleList) {
    327327                    if (rectangle.isVisible()) {
     
    338338
    339339        if (polygons && mapPolygonList != null) {
    340             synchronized (mapPolygonList) {
     340            synchronized (this) {
    341341                for (MapPolygon polygon : mapPolygonList) {
    342342                    if (polygon.isVisible()) {
     
    657657
    658658        if (mapPolygonsVisible && mapPolygonList != null) {
    659             synchronized (mapPolygonList) {
     659            synchronized (this) {
    660660                for (MapPolygon polygon : mapPolygonList) {
    661661                    if (polygon.isVisible())
     
    666666
    667667        if (mapRectanglesVisible && mapRectangleList != null) {
    668             synchronized (mapRectangleList) {
     668            synchronized (this) {
    669669                for (MapRectangle rectangle : mapRectangleList) {
    670670                    if (rectangle.isVisible())
     
    675675
    676676        if (mapMarkersVisible && mapMarkerList != null) {
    677             synchronized (mapMarkerList) {
     677            synchronized (this) {
    678678                for (MapMarker marker : mapMarkerList) {
    679679                    if (marker.isVisible())
Note: See TracChangeset for help on using the changeset viewer.