Skip to content

Commit 24c3398

Browse files
committed
BridJ: fixed velocity template escape
1 parent 50ffcc8 commit 24c3398

File tree

1 file changed

+2
-2
lines changed
  • libraries/Runtime/BridJ/src/main/velocity/org/bridj

1 file changed

+2
-2
lines changed

libraries/Runtime/BridJ/src/main/velocity/org/bridj/Pointer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ static void throwUnexpected(Throwable ex) {
924924
throw new RuntimeException("Unexpected error", ex);
925925
}
926926
/**
927-
Sets the n-th element from this pointer, and return it (different behaviour from {@link List##set(int, Object)} which returns the old value of that element !!!).<br>
927+
Sets the n-th element from this pointer, and return it (different behaviour from {@link List\#set(int, Object)} which returns the old value of that element !!!).<br>
928928
This is equivalent to the C/C++ square bracket assignment syntax.<br>
929929
Take the following C++ code fragment :
930930
<pre>{@code
@@ -945,7 +945,7 @@ static void throwUnexpected(Throwable ex) {
945945
@param index offset in pointed elements at which the value should be copied. Can be negative if the pointer was offset and the memory before it is valid.
946946
@param value value to set at pointed memory location
947947
@throws RuntimeException if called on an untyped {@code Pointer<?>} instance ({@link Pointer#getTargetType()})
948-
@return The value that was given (not the old value as in {@link List##set(int, Object)} !!!)
948+
@return The value that was given (not the old value as in {@link List\#set(int, Object)} !!!)
949949
*/
950950
public T set(long index, T value) {
951951
getIO("Cannot set pointed value").set(this, index, value);

0 commit comments

Comments
 (0)