Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
TPGamesNL committed Jan 31, 2021
1 parent 057ab54 commit e54fdfb
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions docs/basics/running-java-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ If the method you're trying to invoke is not public, you must prefix the method
{% code-tabs %}
{% code-tabs-item title="example.sk" %}
```text
{_arraylist}.[java.util.ArrayList]fastRemove(1)
# or, if you have the declaring class imported:
{_arraylist}.[ArrayList]fastRemove(1)
```
{% endcode-tabs-item %}
Expand All @@ -41,8 +39,6 @@ Generally, skript-reflect can infer the correct overloaded method to call from t
{% code-tabs %}
{% code-tabs-item title="example.sk" %}
```text
System.out.println[java.lang.Object]({_something})
# or, if you have the parameter classes imported:
System.out.println[Object]({_something})
Math.max[int, int](0, {_value})
Expand All @@ -67,8 +63,6 @@ If the field you're trying to use is not public, you must prefix the field name
{% code-tabs %}
{% code-tabs-item title="example.sk" %}
```text
{_hashmap}.[java.util.HashMap]modCount
# or, if you have the declaring class imported:
{_hashmap}.[HashMap]modCount
```
{% endcode-tabs-item %}
Expand Down

0 comments on commit e54fdfb

Please sign in to comment.