You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1195,7 +1195,7 @@ someone is bound to "correct" the apparent redundancy, and use var elsewhere in
1195
1195
if ( var )
1196
1196
```
1197
1197
1198
-
Another technique is to make`TRUE` and`FALSE` have the same value, though most would consider that out and out cheating. Using values 1 and 2 or -1 and 0 is a more subtle way to trip people up and still look respectable. You can use this same technique in Java by defining a static constant called`TRUE`. Programmers might be more suspicious you are up to no good since there is a built-in literaltruth in Java.
1198
+
Another technique is to make`TRUE` and`FALSE` have the same value, though most would consider that out and out cheating. Using values 1 and 2 or -1 and 0 is a more subtle way to trip people up and still look respectable. You can use this same technique in Java by defining a static constant called`TRUE`. Programmers might be more suspicious you are up to no good since there is a built-in literal`true` in Java.
1199
1199
1200
1200
####Third Party Libraries
1201
1201
@@ -1361,4 +1361,3 @@ An early version of this article appeared in Java Developers' Journal (volume 2
1361
1361
This essay is a**joke**! I apologise if anyone took this literally. Canadians think it gauche to label jokes with a :-). People paid no attention when I harped about how to write__maintainable code. I found people were more receptive hearing all the goofy things people often do to muck it up. Checking for**un**maintainable design patterns is a rapid way to defend against malicious or inadvertent sloppiness.
1362
1362
1363
1363
_**<small>The original was published on[Roedy Green's Mindproducts](http://mindprod.com/jgloss/unmain.html) site.</small>**_