Commit 72e09f2e authored by Robert Butora's avatar Robert Butora
Browse files

fixes wrong class names in debug print

parent 632db6a9
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ import vo.parameter.*;

class CutoutImpl implements Cutout
{
   static final Logger LOGGER = Logger.getLogger(DatasetsImpl.class.getName());
   static final Logger LOGGER = Logger.getLogger("CutoutImpl");

   private Settings    settings   = null;
   private Subsurvey[] subsurveys = null;
@@ -38,7 +38,7 @@ class CutoutImpl implements Cutout

   public CutoutImpl()
   {
      LOGGER.info("trace DatasetsImpl()");
      LOGGER.info("trace CutoutImpl()");
      this.settings = Settings.getInstance();
      this.subsurveys = null;
   }
@@ -46,14 +46,14 @@ class CutoutImpl implements Cutout

   public CutoutImpl(Settings settings)
   {
      LOGGER.info("trace DatasetsImpl(settings)");
      LOGGER.info("trace CutoutImpl(settings)");
      this.settings = settings;
      this.subsurveys = null;
   }

   public CutoutImpl(Settings settings, Subsurvey[] subsurveys)
   {
      LOGGER.info("trace DatasetsImpl(settings)");
      LOGGER.info("trace CutoutImpl(settings)");
      this.settings = settings;
      this.subsurveys = subsurveys;
   }
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ import vo.parameter.*;

class DatasetsImpl implements Datasets
{
   static final Logger LOGGER = Logger.getLogger(DatasetsImpl.class.getName());
   static final Logger LOGGER = Logger.getLogger("DatasetsImpl");

   private Settings    settings   = null;
   private Subsurvey[] subsurveys = null;
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ import org.json.simple.parser.ParseException;

public class JsonDecoder
{
 static final Logger LOGGER = Logger.getLogger(DatasetsImpl.class.getName());
 static final Logger LOGGER = Logger.getLogger("JsonDecoder");

   public static CutResult responseFromCutoutJson(String response)
      // throws ParseException