Skip to content
Snippets Groups Projects
Commit 74efb1a4 authored by buczekp's avatar buczekp
Browse files

minor: removed stale TODO

SVN: 17255
parent e333d460
No related branches found
No related tags found
No related merge requests found
......@@ -467,20 +467,21 @@ public class DisplaySettingsManager
return sectionModifications.get(sectionDisplayTypeID);
}
// TODO work in progress, ignore for now.
/**
* @return True if the given section is collapsed
*/
public final Boolean getPanelCollapsedSetting(String panelId)
{
// TODO -- Work in progress
return Boolean.FALSE;
}
public final void updatePanelCollapsedSetting(String panelId, Boolean value)
{
// TODO -- Work in progress, ignore for now.
}
//
/**
* @returns section settings for given display id<br>
*/
......
......@@ -114,7 +114,6 @@ public abstract class AbstractGenericEntityDAO<T extends IIdHolder> extends Abst
return result;
}
// TODO 2009-05-28, Piotr Buczek: use this instead of save() after BO update that does not flush
public final void validateAndSaveUpdatedEntity(T entity)
{
assert entity != null : "entity is null";
......
......@@ -207,7 +207,6 @@ public final class GenericDataSetEditForm extends
{
ArrayList<DatabaseModificationAwareField<?>> fields =
new ArrayList<DatabaseModificationAwareField<?>>();
// TODO 2009-08-01, Piotr Buczek: add other fields specified in LMS-1003
fields.add(wrapUnaware(connectedWithSampleCheckbox));
fields.add(wrapUnaware(sampleChooser.getField()));
fields.add(wrapUnaware(experimentChooser.getField()));
......
......@@ -203,7 +203,7 @@ class DAO extends SimpleJdbcDaoSupport implements IDAO
return (TableModel) template.execute(resolvedQuery, callback);
}
// TODO 2010-02-18, Piotr Buczek: this solution is not safe
// WORKAROUND this solution is not safe
// prepared statement parameters would be better but then we need to know the type of parameters
private static String createSQLQueryWithBindingsResolved(String sqlQuery,
QueryParameterBindings bindingsOrNull)
......
......@@ -45,6 +45,8 @@ import ch.systemsx.cisd.common.logging.LogFactory;
*/
public class PlasMapperUploader
{
// http://www.java-tips.org/other-api-tips/httpclient/how-to-use-multipart-post-method-for-uploading.html
private final static String PLASMAPPER_URL = "http://localhost:8082/PlasMapper";
private final static String GRAPHIC_MAP_SERVLET_PATH = "/servlet/DrawVectorMap";
......@@ -146,7 +148,6 @@ public class PlasMapperUploader
+ post.getStatusLine()));
}
String response = post.getResponseBodyAsString();
System.err.println(response); // TODO 2009-06-21, Piotr Buczek: remove after debugging
operationLog.info(String.format("Response of service: '%s'", response));
return response;
} catch (final Exception ex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment