From 861eb98ef71bc4da48f08d387cf8a9bb7789ae9a Mon Sep 17 00:00:00 2001
From: felmer <felmer>
Date: Tue, 6 Jul 2010 07:16:55 +0000
Subject: [PATCH] Using only ASCII character, escasping non-ASCII characters
 with \uxxxx

SVN: 16850
---
 .../cisd/authentication/DummyAuthenticationService.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/authentication/source/java/ch/systemsx/cisd/authentication/DummyAuthenticationService.java b/authentication/source/java/ch/systemsx/cisd/authentication/DummyAuthenticationService.java
index 3618bc3f404..0d3856944d2 100644
--- a/authentication/source/java/ch/systemsx/cisd/authentication/DummyAuthenticationService.java
+++ b/authentication/source/java/ch/systemsx/cisd/authentication/DummyAuthenticationService.java
@@ -27,10 +27,10 @@ public final class DummyAuthenticationService implements IAuthenticationService
 {
 
     final String[] firstNames =
-        { "Stéphane", "Günter", "Elfriede", "Ryszard", "Karel", "Claude" };
+        { "St\u00e9phane", "G\u00fcnter", "Elfriede", "Ryszard", "Karel", "Claude" };
 
     final String[] lastNames =
-        { "Mallarmé", "Grass", "Jelinek", "Kapu\u015Bci\u0144ski", "\u010Capek", "Lévi-Strauss" };
+        { "Mallarm\u00e9", "Grass", "Jelinek", "Kapu\u015Bci\u0144ski", "\u010Capek", "L\u00e9vi-Strauss" };
 
     //
     // IAuthenticationService
-- 
GitLab