Skip to content

Commit af43fbb

Browse files
author
Bruce Eckel
committed
lowlevel is now excluded from Appveyor
1 parent 80022e0 commit af43fbb

File tree

8 files changed

+5
-10
lines changed

8 files changed

+5
-10
lines changed

collections/MapOfList.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class MapOfList {
2121
petPeople.put(new Person("Marilyn"),
2222
Arrays.asList(
2323
new Pug("Louie aka Louis Snorkelstein Dupree"),
24-
new Cat("Stanford aka Stinky el Negro"),
24+
new Cat("Stanford"),
2525
new Cat("Pinkola")));
2626
petPeople.put(new Person("Luke"),
2727
Arrays.asList(new Rat("Fuzzy"), new Rat("Fizzy")));
@@ -43,8 +43,8 @@ public static void main(String[] args) {
4343
Marilyn, Person Luke]
4444
Pets: [[Cymric Molly, Mutt Spot], [Cat Shackleton, Cat
4545
Elsie May, Dog Margrett], [Rat Freckly], [Pug Louie aka
46-
Louis Snorkelstein Dupree, Cat Stanford aka Stinky el
47-
Negro, Cat Pinkola], [Rat Fuzzy, Rat Fizzy]]
46+
Louis Snorkelstein Dupree, Cat Stanford, Cat Pinkola],
47+
[Rat Fuzzy, Rat Fizzy]]
4848
Person Dawn has:
4949
Cymric Molly
5050
Mutt Spot
@@ -56,7 +56,7 @@ public static void main(String[] args) {
5656
Rat Freckly
5757
Person Marilyn has:
5858
Pug Louie aka Louis Snorkelstein Dupree
59-
Cat Stanford aka Stinky el Negro
59+
Cat Stanford
6060
Cat Pinkola
6161
Person Luke has:
6262
Rat Fuzzy

equalshashcode/IndividualTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void main(String[] args) {
2020
Cat Elsie May
2121
Cat Pinkola
2222
Cat Shackleton
23-
Cat Stanford aka Stinky el Negro
23+
Cat Stanford
2424
Cymric Molly
2525
Dog Margrett
2626
Mutt Spot

lowlevel/AtomicEvenProducer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://OnJava8.com for more book information.
55
// Atomic classes are occasionally useful in regular code
6-
// {ValidateByHand} AppVeyor CI has trouble
76
import java.util.concurrent.atomic.*;
87

98
public class AtomicEvenProducer extends IntGenerator {

lowlevel/AtomicIntegerTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// (c)2017 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://OnJava8.com for more book information.
5-
// {ValidateByHand} AppVeyor CI has trouble
65
import java.util.concurrent.*;
76
import java.util.concurrent.atomic.*;
87
import java.util.*;

lowlevel/AtomicSerialNumbers.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// (c)2017 MindView LLC: see Copyright.txt
33
// We make no guarantees that this code is fit for any purpose.
44
// Visit http://OnJava8.com for more book information.
5-
// {ValidateByHand} AppVeyor CI has trouble
65
import java.util.concurrent.atomic.*;
76

87
public class

lowlevel/AttemptLocking.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
// Visit http://OnJava8.com for more book information.
55
// Locks in the concurrent library allow you
66
// to give up on trying to acquire a lock
7-
// {ValidateByHand} AppVeyor CI has trouble
87
import java.util.concurrent.*;
98
import java.util.concurrent.locks.*;
109
import onjava.Nap;

lowlevel/SynchronizedComparison.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
// Visit http://OnJava8.com for more book information.
55
// Synchronizing blocks instead of entire methods
66
// speeds up access.
7-
// {ValidateByHand} AppVeyor CI has trouble
87
import java.util.*;
98
import java.util.stream.*;
109
import java.util.concurrent.*;
File renamed without changes.

0 commit comments

Comments
 (0)