1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-05 01:50:49 +00:00

literal & in javaddoc

This commit is contained in:
soloturn 2022-09-24 10:56:32 +02:00
parent f846634ce2
commit 763e60b2d1

View File

@ -18,7 +18,7 @@ package ext.plantuml.com.google.zxing.qrcode.encoder;
/**
* A class which wraps a 2D array of bytes. The default usage is signed. If you want to use it as a
* unsigned container, it's up to you to do byteValue & 0xff at each location.
* unsigned container, it's up to you to do byteValue {@literal &} 0xff at each location.
*
* JAVAPORT: The original code was a 2D array of ints, but since it only ever gets assigned
* -1, 0, and 1, I'm going to use less memory and go with bytes.