INTSAMPLES-91 Fix Typo In Directory Name

README.md and sysout for copy/paste had txSynchDir instead of
txSynchDemo.
This commit is contained in:
Gary Russell
2012-10-11 17:05:28 -04:00
parent 84aefe6766
commit 7a7733b3ed
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ The java.io.tmpdir for your machine is displayed in the console…
expression evaluation is logged.
=========================================================
/var/folders/k0/gch26h6d2ms9t0g7pyhtzfkc0000gn/T/txSynchDir
/var/folders/k0/gch26h6d2ms9t0g7pyhtzfkc0000gn/T/txSynchDemo
````
To send a good file, put a file in that directory; for example:

View File

@@ -56,7 +56,7 @@ public class TransactionSynchronizationDemo {
+ "\n expression evaluation is logged. "
+ "\n "
+ "\n=========================================================" );
System.out.println(System.getProperty("java.io.tmpdir") + "/txSynchDir");
System.out.println(System.getProperty("java.io.tmpdir") + "/txSynchDemo");
System.in.read();
System.exit(0);
}