Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-3371

Strange (and untested) code fragment in RAMTransaction.addColumnToConglomerate()

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 10.4.1.3
    • 10.10.1.1
    • Store
    • None

    Description

      RAMTransaction.addColumnToConglomerate() contains this piece of code:

      // remove old entry in the Conglomerate directory, and add new one
      if (tempCongloms != null)
      tempCongloms.remove(new Long(conglomId));
      tempCongloms.put(new Long(conglomId), conglom);

      1. According to the code coverage report (http://people.apache.org/~fuzzylogic/codecoverage/529822/_files/3fc.html#5) these lines are not tested. If possible, a test that covers them should be added to the regression suite.

      2. The null check looks either unnecessary (seems to be the case after a brief inspection of the code), or incomplete since the last line will throw a NullPointerException regardless of the check if tempCongloms is null.

      3. The call to remove() before put() is redundant, since HashMap.put() will remove the old mapping implicitly.

      4. It seems to me that the object that is put into the HashMap always is the same as the one that is removed, so perhaps all these lines could be deleted.

      Attachments

        1. test.diff
          2 kB
          Knut Anders Hatlen
        2. remove.diff
          1.0 kB
          Knut Anders Hatlen

        Issue Links

          Activity

            People

              knutanders Knut Anders Hatlen
              knutanders Knut Anders Hatlen
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: