Skip to content

Commit e54fdfb

Browse files
committed
Update documentation
1 parent 057ab54 commit e54fdfb

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

docs/basics/running-java-code.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ If the method you're trying to invoke is not public, you must prefix the method
2727
{% code-tabs %}
2828
{% code-tabs-item title="example.sk" %}
2929
```text
30-
{_arraylist}.[java.util.ArrayList]fastRemove(1)
31-
# or, if you have the declaring class imported:
3230
{_arraylist}.[ArrayList]fastRemove(1)
3331
```
3432
{% endcode-tabs-item %}
@@ -41,8 +39,6 @@ Generally, skript-reflect can infer the correct overloaded method to call from t
4139
{% code-tabs %}
4240
{% code-tabs-item title="example.sk" %}
4341
```text
44-
System.out.println[java.lang.Object]({_something})
45-
# or, if you have the parameter classes imported:
4642
System.out.println[Object]({_something})
4743
4844
Math.max[int, int](0, {_value})
@@ -67,8 +63,6 @@ If the field you're trying to use is not public, you must prefix the field name
6763
{% code-tabs %}
6864
{% code-tabs-item title="example.sk" %}
6965
```text
70-
{_hashmap}.[java.util.HashMap]modCount
71-
# or, if you have the declaring class imported:
7266
{_hashmap}.[HashMap]modCount
7367
```
7468
{% endcode-tabs-item %}

0 commit comments

Comments
 (0)