summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-06-28 18:12:45 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-06-28 18:12:45 +0000
commitf4754718b154e0e7210c9873b093fe68db2993bc (patch)
treeb58954002317fe624598487680ed6064e253bd6e
parent05fca5902af343b6f4d13abc21210bb2b19c7bb8 (diff)
downloadATCD-f4754718b154e0e7210c9873b093fe68db2993bc.tar.gz
Moved crlf() into Creator.pm
-rw-r--r--bin/MakeProjectCreator/modules/Creator.pm6
-rw-r--r--bin/MakeProjectCreator/modules/ProjectCreator.pm8
2 files changed, 7 insertions, 7 deletions
diff --git a/bin/MakeProjectCreator/modules/Creator.pm b/bin/MakeProjectCreator/modules/Creator.pm
index 9de9c7b38fb..581e96d9598 100644
--- a/bin/MakeProjectCreator/modules/Creator.pm
+++ b/bin/MakeProjectCreator/modules/Creator.pm
@@ -273,6 +273,12 @@ sub get_ti_override {
return $self->{'ti'};
}
+
+sub crlf {
+ my($self) = shift;
+ return "\n";
+}
+
# ************************************************************
# Virtual Methods To Be Overridden
# ************************************************************
diff --git a/bin/MakeProjectCreator/modules/ProjectCreator.pm b/bin/MakeProjectCreator/modules/ProjectCreator.pm
index 5014561a242..6e1b66028fd 100644
--- a/bin/MakeProjectCreator/modules/ProjectCreator.pm
+++ b/bin/MakeProjectCreator/modules/ProjectCreator.pm
@@ -1138,7 +1138,7 @@ sub get_template_input {
return $self->{'dll_template_input'};
}
}
-
+
if ($self->{'writing_type'} == 1) {
return $self->{'lexe_template_input'};
}
@@ -1229,12 +1229,6 @@ sub convert_slashes {
}
-sub crlf {
- my($self) = shift;
- return "\n";
-}
-
-
sub fill_value {
my($self) = shift;
my($name) = shift;