Ignore:
Timestamp:
2016-06-01T23:17:40+02:00 (8 years ago)
Author:
Don-vip
Message:

sonar - squid:S1854 - Dead stores should be removed

Location:
trunk/src/org/openstreetmap/josm/tools
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/AudioPlayer.java

    r10216 r10308  
    302302                                if (audioInputStream != null) {
    303303                                    Utils.close(audioInputStream);
    304                                     audioInputStream = null;
    305304                                }
    306305                                playingUrl = command.url();
    307306                                audioInputStream = AudioSystem.getAudioInputStream(playingUrl);
    308307                                audioFormat = audioInputStream.getFormat();
    309                                 long nBytesRead = 0;
     308                                long nBytesRead;
    310309                                position = 0.0;
    311310                                offset -= leadIn;
  • trunk/src/org/openstreetmap/josm/tools/Diff.java

    r10246 r10308  
    116116    private final FileData[] filevec;
    117117    private int cost;
    118     /** Snakes bigger than this are considered "big". */
    119     private static final int SNAKE_LIMIT = 20;
    120118
    121119    /**
     
    168166        for (int c = 1;; ++c) {
    169167            int d;          /* Active diagonal. */
    170             boolean bigSnake = false;
    171168
    172169            /* Extend the top-down search by an edit step in each diagonal. */
     
    182179            }
    183180            for (d = fmax; d >= fmin; d -= 2) {
    184                 int x, y, oldx, tlo = fd[fdiagoff + d - 1], thi = fd[fdiagoff + d + 1];
     181                int x, y, tlo = fd[fdiagoff + d - 1], thi = fd[fdiagoff + d + 1];
    185182
    186183                if (tlo >= thi) {
     
    189186                    x = thi;
    190187                }
    191                 oldx = x;
    192188                y = x - d;
    193189                while (x < xlim && y < ylim && xv[x] == yv[y]) {
    194190                    ++x; ++y;
    195                 }
    196                 if (x - oldx > SNAKE_LIMIT) {
    197                     bigSnake = true;
    198191                }
    199192                fd[fdiagoff + d] = x;
     
    216209            }
    217210            for (d = bmax; d >= bmin; d -= 2) {
    218                 int x, y, oldx, tlo = bd[bdiagoff + d - 1], thi = bd[bdiagoff + d + 1];
     211                int x, y, tlo = bd[bdiagoff + d - 1], thi = bd[bdiagoff + d + 1];
    219212
    220213                if (tlo < thi) {
     
    223216                    x = thi - 1;
    224217                }
    225                 oldx = x;
    226218                y = x - d;
    227219                while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) {
    228220                    --x; --y;
    229                 }
    230                 if (oldx - x > SNAKE_LIMIT) {
    231                     bigSnake = true;
    232221                }
    233222                bd[bdiagoff + d] = x;
  • trunk/src/org/openstreetmap/josm/tools/ImageProvider.java

    r10300 r10308  
    874874            if ("image/svg+xml".equals(mediatype)) {
    875875                String s = new String(bytes, StandardCharsets.UTF_8);
    876                 SVGDiagram svg = null;
     876                SVGDiagram svg;
    877877                synchronized (getSvgUniverse()) {
    878878                    URI uri = getSvgUniverse().loadSVG(new StringReader(s), Utils.encodeUrl(s));
     
    10031003        switch (type) {
    10041004        case SVG:
    1005             SVGDiagram svg = null;
     1005            SVGDiagram svg;
    10061006            synchronized (getSvgUniverse()) {
    10071007                URI uri = getSvgUniverse().loadSVG(path);
     
    10491049
    10501050    private static URL getImageUrl(String imageName, Collection<String> dirs, Collection<ClassLoader> additionalClassLoaders) {
    1051         URL u = null;
     1051        URL u;
    10521052
    10531053        // Try passed directories first
     
    12251225        }
    12261226
    1227         ImageResource imageResource = null;
     1227        ImageResource imageResource;
    12281228
    12291229        synchronized (ROTATE_CACHE) {
  • trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java

    r10173 r10308  
    237237            if (dpkg || rpm || eque) {
    238238                for (String packageName : packageNames) {
    239                     String[] args = null;
     239                    String[] args;
    240240                    if (dpkg) {
    241241                        args = new String[] {"dpkg-query", "--show", "--showformat", "${Architecture}-${Version}", packageName};
  • trunk/src/org/openstreetmap/josm/tools/TextTagParser.java

    r9078 r10308  
    175175         Pattern p = Pattern.compile(tagRegex);
    176176         Map<String, String> tags = new HashMap<>();
    177          String k = null, v = null;
     177         String k;
     178         String v;
    178179         for (String  line: lines) {
    179180            if (line.trim().isEmpty()) continue; // skip empty lines
Note: See TracChangeset for help on using the changeset viewer.