From 22e8ab6479334206f97b0093f6c5ffd14610cce3 Mon Sep 17 00:00:00 2001
From: Normand Briere <nbriere@noware.ca>
Date: Sun, 18 Aug 2019 20:30:44 -0400
Subject: [PATCH] More credits
---
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