codemasher 4 лет назад
Родитель
Сommit
5527ba3437
2 измененных файлов с 4 добавлено и 9 удалено
  1. 4 8
      src/Common/ReedSolomonDecoder.php
  2. 0 1
      src/Data/QRDataModeInterface.php

+ 4 - 8
src/Common/ReedSolomonDecoder.php

@@ -20,14 +20,10 @@ use function array_fill, count;
  * The algorithm will not be explained here, but the following references were helpful
  * in creating this implementation:
  *
- * <ul>
- * <li>Bruce Maggs.
- * <a href="http://www.cs.cmu.edu/afs/cs.cmu.edu/project/pscico-guyb/realworld/www/rs_decode.ps">
- * "Decoding Reed-Solomon Codes"</a> (see discussion of Forney's Formula)</li>
- * <li>J.I. Hall. <a href="www.mth.msu.edu/~jhall/classes/codenotes/GRS.pdf">
- * "Chapter 5. Generalized Reed-Solomon Codes"</a>
- * (see discussion of Euclidean algorithm)</li>
- * </ul>
+ * - Bruce Maggs "Decoding Reed-Solomon Codes" (see discussion of Forney's Formula)
+ *   http://www.cs.cmu.edu/afs/cs.cmu.edu/project/pscico-guyb/realworld/www/rs_decode.ps
+ * - J.I. Hall. "Chapter 5. Generalized Reed-Solomon Codes" (see discussion of Euclidean algorithm)
+ *   https://users.math.msu.edu/users/halljo/classes/codenotes/GRS.pdf
  *
  * Much credit is due to William Rucklidge since portions of this code are an indirect
  * port of his C++ Reed-Solomon implementation.

+ 0 - 1
src/Data/QRDataModeInterface.php

@@ -14,7 +14,6 @@ use chillerlan\QRCode\Common\BitBuffer;
 
 /**
  * Specifies the methods reqired for the data modules (Number, Alphanum, Byte and Kanji)
- * and holds version information in several constants
  */
 interface QRDataModeInterface{