forked from Apress/scjd-exam-w-j2se-5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
24 lines (15 loc) · 766 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
This README file describes changes to the source files from what might be
described in the book.
--------------------------------------------------------------------------------
class sampleproject.test.DBTester
Line 50 has been changed from:
db = DvdConnector.getRemote();
to:
db = DvdConnector.getRemote("localhost", "1099");
This now matches the method signature for the getRemote method in the
DvdConnector classes.
--------------------------------------------------------------------------------
class NotifyVersusNotifyAll
An updated version of this class has been added which shows the differences
between calling notify() and calling notifyAll() properly.
--------------------------------------------------------------------------------