remove an erroneously added newline in ruby generated structs
authorBryan Duxbury <bryanduxbury@apache.org>
Fri, 19 Feb 2010 20:00:55 +0000 (20:00 +0000)
committerBryan Duxbury <bryanduxbury@apache.org>
Fri, 19 Feb 2010 20:00:55 +0000 (20:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@911957 13f79535-47bb-0310-9956-ffa450edef68

compiler/cpp/src/generate/t_rb_generator.cc

index cfa47c5..f3d054d 100644 (file)
@@ -653,7 +653,7 @@ void t_rb_generator::generate_field_data(std::ofstream& out, t_type* field_type,
     }
   } else {
     if (((t_base_type*)field_type)->is_binary()) {
-      out << ", :binary => true" << endl;
+      out << ", :binary => true";
     }
   }