From 02090cffa9ec4a199b01d2018dd61272ce6ca8f0 Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Wed, 16 May 2007 13:18:15 +0000
Subject: [PATCH] Use System.getProperty("line.separator") instead of "\n"

---
 opends/resource/DynamicConstants.java.stubs |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/opends/resource/DynamicConstants.java.stubs b/opends/resource/DynamicConstants.java.stubs
index c792a0f..9584d97 100644
--- a/opends/resource/DynamicConstants.java.stubs
+++ b/opends/resource/DynamicConstants.java.stubs
@@ -153,5 +153,6 @@
    * A printable version string for this product.
    */
   public static final String PRINTABLE_VERSION_STRING =
-       FULL_VERSION_STRING + "\nBuild " + BUILD_ID +"\n";
+       FULL_VERSION_STRING + System.getProperty("line.separator") +
+       "Build " + BUILD_ID + System.getProperty("line.separator");
 }

--
Gitblit v1.10.0