Skip to content

Commit b807960

Browse files
committed
fixes in Lst for OpenJDK compliance
1 parent 8ba7785 commit b807960

File tree

1 file changed

+2
-2
lines changed
  • sources/net.sf.j2s.java.core/src/javajs/util

1 file changed

+2
-2
lines changed

sources/net.sf.j2s.java.core/src/javajs/util/Lst.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ public Lst() {
4141
super();
4242
}
4343

44-
public boolean addLast(V v) {
45-
return super.add(v);
44+
public void addLast(V v) {
45+
super.add(v);
4646
}
4747

4848
public V removeItemAt(int location) {

0 commit comments

Comments
 (0)