Description: Fix unmappable character
  The pound symbol was not valid ascii so it was replaced
  by the unicode character.
Author: Stephen Nelson <stephen@eccostudio.com> 
Forwarded: no
Last-Update: 2013-10-03

--- a/example/org/jmock/example/sniper/Money.java
+++ b/example/org/jmock/example/sniper/Money.java
@@ -27,7 +27,7 @@
 
     @Override
     public String toString() {
-        return "£" + amount;
+        return "\u00a3" + amount;
     }
 
     @Override
