From cc8d3f09014e3d291640209d6336fbb7bae0d359 Mon Sep 17 00:00:00 2001
From: Tinny Ng <tng@apache.org>
Date: Thu, 7 Jun 2001 20:58:39 +0000
Subject: [PATCH] Fix no newline at the end warning.  By Pei Yong Zhang.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172747 13f79535-47bb-0310-9956-ffa450edef68
---
 src/util/Base64.cpp                       | 5 ++++-
 src/util/XMLBigDecimal.cpp                | 5 ++++-
 src/util/regx/OpFactory.cpp               | 5 ++++-
 src/util/regx/RegxUtil.cpp                | 5 ++++-
 src/util/regx/TokenFactory.cpp            | 5 ++++-
 src/validators/common/CMAny.cpp           | 5 ++++-
 src/validators/common/GrammarResolver.cpp | 5 ++++-
 7 files changed, 28 insertions(+), 7 deletions(-)

diff --git a/src/util/Base64.cpp b/src/util/Base64.cpp
index 74110f643..1e919e2fa 100644
--- a/src/util/Base64.cpp
+++ b/src/util/Base64.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.4  2001/06/07 20:55:20  tng
+ * Fix no newline at the end warning.  By Pei Yong Zhang.
+ *
  * Revision 1.3  2001/05/28 21:11:16  tng
  * Schema: Various DatatypeValidator fix.  By Pei Yong Zhang
  *
@@ -296,4 +299,4 @@ bool Base64::isData(const XMLCh& octect)
         return false;
 
     return( base64Alphabet[octect] != (XMLCh) -1);
-}
\ No newline at end of file
+}
diff --git a/src/util/XMLBigDecimal.cpp b/src/util/XMLBigDecimal.cpp
index 71a22401a..aa3c592b9 100644
--- a/src/util/XMLBigDecimal.cpp
+++ b/src/util/XMLBigDecimal.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.5  2001/06/07 20:55:21  tng
+ * Fix no newline at the end warning.  By Pei Yong Zhang.
+ *
  * Revision 1.4  2001/05/18 20:17:55  tng
  * Schema: More exception messages in XMLBigDecimal/XMLBigInteger/DecimalDatatypeValidator.  By Pei Yong Zhang.
  *
@@ -324,4 +327,4 @@ XMLCh*  XMLBigDecimal::toString() const
     // De-allocate the memory allocated by XMLBigInteger
     delete[] tmpBuf;
     return retBuf;
-}
\ No newline at end of file
+}
diff --git a/src/util/regx/OpFactory.cpp b/src/util/regx/OpFactory.cpp
index 1f8ab0ae0..2d5688fd9 100644
--- a/src/util/regx/OpFactory.cpp
+++ b/src/util/regx/OpFactory.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.3  2001/06/07 20:55:36  tng
+ * Fix no newline at the end warning.  By Pei Yong Zhang.
+ *
  * Revision 1.2  2001/05/11 13:26:43  tng
  * Copyright update.
  *
@@ -224,4 +227,4 @@ ConditionOp* OpFactory::createConditionOp(const Op* const next, const int ref,
 
 /**
   * End of file OpFactory.cpp
-  */
\ No newline at end of file
+  */
diff --git a/src/util/regx/RegxUtil.cpp b/src/util/regx/RegxUtil.cpp
index 86c5de24a..e8518dae5 100644
--- a/src/util/regx/RegxUtil.cpp
+++ b/src/util/regx/RegxUtil.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.3  2001/06/07 20:55:38  tng
+ * Fix no newline at the end warning.  By Pei Yong Zhang.
+ *
  * Revision 1.2  2001/05/11 13:26:49  tng
  * Copyright update.
  *
@@ -139,4 +142,4 @@ XMLCh* RegxUtil::stripExtendedComment(const XMLCh* const expression) {
 }
 /**
   * End of file RegxUtil.cpp
-  */
\ No newline at end of file
+  */
diff --git a/src/util/regx/TokenFactory.cpp b/src/util/regx/TokenFactory.cpp
index 67ec3f4ed..09406fca0 100644
--- a/src/util/regx/TokenFactory.cpp
+++ b/src/util/regx/TokenFactory.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.5  2001/06/07 20:55:39  tng
+ * Fix no newline at the end warning.  By Pei Yong Zhang.
+ *
  * Revision 1.4  2001/05/11 13:26:51  tng
  * Copyright update.
  *
@@ -498,4 +501,4 @@ void TokenFactory::printUnicode() {
 
 /**
   * End of file TokenFactory.cpp
-  */
\ No newline at end of file
+  */
diff --git a/src/validators/common/CMAny.cpp b/src/validators/common/CMAny.cpp
index fc5c779b3..a5fafbd71 100644
--- a/src/validators/common/CMAny.cpp
+++ b/src/validators/common/CMAny.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.4  2001/06/07 20:58:38  tng
+ * Fix no newline at the end warning.  By Pei Yong Zhang.
+ *
  * Revision 1.3  2001/05/11 13:27:14  tng
  * Copyright update.
  *
@@ -155,4 +158,4 @@ void CMAny::calcLastPos(CMStateSet& toSet) const
         toSet.setBit(fPosition);
 
 	return;
-}
\ No newline at end of file
+}
diff --git a/src/validators/common/GrammarResolver.cpp b/src/validators/common/GrammarResolver.cpp
index 192388df7..edadf1c25 100644
--- a/src/validators/common/GrammarResolver.cpp
+++ b/src/validators/common/GrammarResolver.cpp
@@ -57,6 +57,9 @@
 
 /*
  * $Log$
+ * Revision 1.3  2001/06/07 20:58:39  tng
+ * Fix no newline at the end warning.  By Pei Yong Zhang.
+ *
  * Revision 1.2  2001/05/11 13:27:19  tng
  * Copyright update.
  *
@@ -127,4 +130,4 @@ void GrammarResolver::reset() {
    if (fDataTypeReg) {
       fDataTypeReg->resetRegistry();
    }
-}
\ No newline at end of file
+}
-- 
GitLab