Skip to content

Commit

Permalink
removed some comment lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimong committed Feb 13, 2015
1 parent 68a7b4e commit 77f96db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2053,10 +2053,6 @@ public void exportToExcelAction() {
List list = null;
if (rvsi != null) {
list = rvsi.getResolvedValueSetList();
if (list != null) {
System.out.println("(*) ResolvedValueSetIteratorHolder list.size() = " + list.size());
}

sb.append(rvsi.getOpenTableTag("rvs_table"));
String first_line = (String) list.get(0);
first_line = first_line.replaceAll("td", "th");
Expand Down Expand Up @@ -2086,10 +2082,6 @@ public void exportToExcelAction() {
System.out.println("(*) ResolvedValueSetIteratorHolder extractRawDataFromTableContent returns w == null???");
}
*/


} else {
System.out.println("(*) rvsi == null???");
}

String outputstr = sb.toString();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package gov.nih.nci.evs.browser.utils;
package gov.nih.nci.evs.browser.utils;


import java.util.*;
Expand Down
6 changes: 2 additions & 4 deletions software/ncitbrowser/web/ConceptReport.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@
String match_text = (String) request.getSession().getAttribute("matchText");
String jsfPage = "/pages/concept_details.jsf";
System.out.println("(***) Conceptreport.jsp dictionary: " + dictionary);
boolean bool_val = LicenseUtils.isLicensedAndNotAccepted(request, dictionary, null);
System.out.println("(***) Conceptreport.jsp dictionary: bool_val: " + bool_val);
if (LicenseUtils.isLicensedAndNotAccepted(request, dictionary, null)) {
jsfPage = "/pages/accept_license.jsf";
}
Expand Down
4 changes: 2 additions & 2 deletions software/ncitbrowser/web/pages/download_value_set.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<%
String message = (String) request.getSession().getAttribute("message");
request.getSession().removeAttribute("message");
System.out.println(message);
//System.out.println(message);
String name = null;
String valueset_uri = null;
Expand Down Expand Up @@ -245,7 +245,7 @@ if (vsd_name.length() < HTTPUtils.ABS_MAX_STR_LEN) {
if (!DataUtils.isNullOrBlank(vsd_uri)) {
System.out.println("set checked_valuesets = " + vsd_uri);
//System.out.println("set checked_valuesets = " + vsd_uri);
checked_valuesets = vsd_uri;
}
Expand Down

0 comments on commit 77f96db

Please sign in to comment.