From 86f4e9c75951153ae9825f4772633e45698cb602 Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Sun, 16 Dec 2018 21:21:43 -0500 Subject: [PATCH] Timeflow clean-up. --- timeflow/format/file/HtmlFormat.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/timeflow/format/file/HtmlFormat.java b/timeflow/format/file/HtmlFormat.java index 3792f28..b431001 100755 --- a/timeflow/format/file/HtmlFormat.java +++ b/timeflow/format/file/HtmlFormat.java @@ -9,7 +9,7 @@ public class HtmlFormat implements Export { - TFModel model; + TimeflowModel model; java.util.List<Field> fields; Field title; @@ -17,12 +17,12 @@ { } - public HtmlFormat(TFModel model) + public HtmlFormat(TimeflowModel model) { setModel(model); } - public void setModel(TFModel model) + public void setModel(TimeflowModel model) { this.model = model; fields = model.getDB().getFields(); @@ -30,7 +30,7 @@ } @Override - public void export(TFModel model, BufferedWriter out) throws Exception + public void export(TimeflowModel model, BufferedWriter out) throws Exception { setModel(model); out.write(makeHeader()); -- Gitblit v1.6.2