diff options
Diffstat (limited to 'dev-java/randomguid/files/1.2.1-examples-package.patch')
-rw-r--r-- | dev-java/randomguid/files/1.2.1-examples-package.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-java/randomguid/files/1.2.1-examples-package.patch b/dev-java/randomguid/files/1.2.1-examples-package.patch new file mode 100644 index 000000000000..95e82d7ea3fb --- /dev/null +++ b/dev-java/randomguid/files/1.2.1-examples-package.patch @@ -0,0 +1,11 @@ +--- /usr/share/doc/randomguid-1.2.1-r1/RandomGUIDdemo.java.orig 2007-08-19 18:19:21.000000000 -0400 ++++ RandomGUIDdemo.java 2007-08-19 18:14:45.000000000 -0400 +@@ -4,7 +4,7 @@ + // Generate 20 of 'em!
+ public static void main(String[] args) {
+ for(int i=1; i<=20; i++) {
+- RandomGUID myguid = new RandomGUID(false);
++ com.javaexchange.RandomGUID myguid = new com.javaexchange.RandomGUID(false);
+ System.out.println(i + " " + myguid.toString());
+ }
+ }
|