1
0
forked from pabulaner/vivi
This commit is contained in:
Paul H 2025-03-02 11:19:52 +01:00
parent c9af65ef6d
commit e868e84463
2 changed files with 3 additions and 2 deletions

1
list/.idea/vcs.xml generated
View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="VcsDirectoryMappings"> <component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" /> <mapping directory="$PROJECT_DIR$" vcs="Git" />
</component> </component>
</project> </project>

View File

@ -32,8 +32,8 @@ public class Main {
list.remove(3); list.remove(3);
// set the element at the specified index // set the element at the specified index
list.set(1, 43); list.set(1, (byte) 43);
list.set(0, 8); list.set(0, (byte) 8);
// get the element at the specified index // get the element at the specified index
list.get(2); list.get(2);