Take out timestamps from generated files
authorMark Slee <mcslee@apache.org>
Wed, 13 Dec 2006 01:07:33 +0000 (01:07 +0000)
committerMark Slee <mcslee@apache.org>
Wed, 13 Dec 2006 01:07:33 +0000 (01:07 +0000)
Summary: File system does this for you.

Reviewed By: martin, yishan

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664893 13f79535-47bb-0310-9956-ffa450edef68

compiler/cpp/src/generate/t_oop_generator.h
compiler/cpp/src/generate/t_py_generator.cc

index d0d2946..987705d 100644 (file)
@@ -39,7 +39,6 @@ class t_oop_generator : public t_generator {
     return
       std::string("/**\n") +
       " * Autogenerated by Thrift\n" +
-      " * " + g_time_str +
       " *\n" +
       " * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n" +
       " */\n";
index bc38296..c6e81e3 100644 (file)
@@ -57,7 +57,6 @@ string t_py_generator::py_autogen_comment() {
   return
     std::string("#\n") +
     "# Autogenerated by Thrift\n" +
-    "# " + g_time_str +
     "#\n" +
     "# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n" +
     "#\n";