From 3430570446c05d9b4e2fa08f46a5de2a12649378 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"

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

diff --git a/opendj-sdk/opends/resource/DynamicConstants.java.stubs b/opendj-sdk/opends/resource/DynamicConstants.java.stubs
index c792a0f..9584d97 100644
--- a/opendj-sdk/opends/resource/DynamicConstants.java.stubs
+++ b/opendj-sdk/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