repositories
/
TP_POO.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23c9835
)
Minor code cleanups.
author
Jérôme Benoit
<jerome.benoit@piment-noir.org>
Thu, 8 Feb 2018 21:33:57 +0000
(22:33 +0100)
committer
Jérôme Benoit
<jerome.benoit@piment-noir.org>
Thu, 8 Feb 2018 21:33:57 +0000
(22:33 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
Listes/Liste.java
patch
|
blob
|
blame
|
history
diff --git
a/Listes/Liste.java
b/Listes/Liste.java
index 6a62aea93ac02feeaba37c34db1421ae8a06750e..3b03590d82bdc4c6334f4888d79547e0dcce110a 100644
(file)
--- a/
Listes/Liste.java
+++ b/
Listes/Liste.java
@@
-37,7
+37,7
@@
class Liste {
private int list_counter;
Liste() {
- set
h
eadNode(null);
+ set
H
eadNode(null);
setSize(0);
}
@@
-54,11
+54,11
@@
class Liste {
list_counter = size;
}
- private void set
h
eadNode(IntNode node) {
+ private void set
H
eadNode(IntNode node) {
headNode = node;
}
- private IntNode get
h
eadNode() {
+ private IntNode get
H
eadNode() {
return headNode;
}