Skip to content

Commit 6c93ba2

Browse files
committed
Fix TestRegularExpression
1 parent b21359e commit 6c93ba2

6 files changed

Lines changed: 6 additions & 8 deletions

File tree

Copyright.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright.txt
2-
This computer source code is Copyright 2016 MindView LLC
2+
This computer source code is Copyright ©2016 MindView LLC
33
All Rights Reserved.
44

55
Permission to use, copy, modify, and distribute this

assertions/Assert1.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Non-informative style of assert
66
// Must run with -ea:
7-
// {JVMArgs: -ea}
7+
// {JVMArgs: -ea}
88
// {ThrowsException}
99

1010
public class Assert1 {

collectionsindepth/MapPerformance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Demonstrates performance differences in Maps
66
// Small to keep build testing short:
7-
// {Args: 100 5000}
7+
// {Args: 100 5000}
88
import java.util.*;
99

1010
public class MapPerformance {

serialization/APerson.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Use the XOM library to write and read XML
6-
// {Requires: nu.xom.Node; You must install
7-
// the XOM library from http://www.xom.nu }
6+
// You must install nu.xom.Node from http://www.xom.nu
87
import nu.xom.*;
98
import java.io.*;
109
import java.util.*;

serialization/People.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
// (c)2016 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
5-
// {Requires: nu.xom.Node; You must install
6-
// the XOM library from http://www.xom.nu }
5+
// You must install nu.xom.Node from http://www.xom.nu
76
// {RunFirst: APerson}
87
import nu.xom.*;
98
import java.io.File;

strings/TestRegularExpression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
55
// Simple regular expression demonstration
6-
// {Args: abcabcabcdefabc "abc+" "(abc)+" "(abc){2,}" }
6+
// {Args: abcabcabcdefabc "abc+" "(abc)+" }
77
import java.util.regex.*;
88

99
public class TestRegularExpression {

0 commit comments

Comments
 (0)