fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
10 lines
579 B
Text
10 lines
579 B
Text
Most programmers who use Perl's object-oriented features construct their
|
|
objects by blessing a hash. But, in doing so, they undermine the
|
|
robustness of the OO approach. Hash-based objects are unencapsulated:
|
|
their entries are open for the world to access and modify.
|
|
|
|
Objects without effective encapsulation are vulnerable. Instead of
|
|
politely respecting their public interface, some clever client coder
|
|
inevitably will realize that it's marginally faster to interact directly
|
|
with the underlying implementation, pulling out attribute values
|
|
directly from the hash of an object.
|