Skip to content

Commit

Permalink
Cleanup commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanpadams committed Sep 29, 2023
1 parent 2e23f15 commit 774dfef
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2006-2018, by the California Institute of Technology.
// Copyright 2006-2023, by the California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.
// Any commercial use must be negotiated with the Office of Technology Transfer
// at the California Institute of Technology.
Expand All @@ -10,7 +10,6 @@
// may be required before exporting such information to foreign countries or
// providing access to foreign nationals.
//
// $Id: LidVid.java 10921 2012-09-10 22:11:40Z mcayanan $
package gov.nasa.pds.tools.util;

import java.util.List;
Expand Down Expand Up @@ -53,8 +52,6 @@ public ContextProductReference(String lid, String version, List<String> types,
} else {
hasVersion = true;
}
// System.out.println(getLid() + ", " + getVersion() + ", " + getName()
// + ", " + getType());
}

public String getLid() {
Expand Down Expand Up @@ -112,11 +109,6 @@ public boolean equals(Object o) {
if (o instanceof ContextProductReference) {
ContextProductReference lidvid = (ContextProductReference) o;

// if(lidvid.getName().equals("N/A"))
// System.out.println("obj 1: " + lidvid.getLid() + ", " +
// lidvid.getVersion() + ", " + lidvid.getName() + ", " +
// lidvid.getType());

// Compare Lid and/or version only
if (this.lid.equalsIgnoreCase(lidvid.getLid())) {
if (this.hasVersion) {
Expand Down

0 comments on commit 774dfef

Please sign in to comment.