Skip to content

Commit c76c747

Browse files
committed
Fix javadoc
1 parent dde33dd commit c76c747

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

library/src/main/java/com/github/devnied/emvnfccard/EMVParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ public class EMVParser {
5454
*
5555
* @param pProvider
5656
* provider to launch command
57+
* @param pContactLess
58+
* boolean to indicate if the EMV card is contact less or not
5759
*/
5860
public EMVParser(final IProvider pProvider, final boolean pContactLess) {
5961
provider = pProvider;
@@ -63,8 +65,6 @@ public EMVParser(final IProvider pProvider, final boolean pContactLess) {
6365
/**
6466
* Method used to read a EMV card
6567
*
66-
* @param pProvider
67-
* provider to send command to the card
6868
* @return data read from card or null if any provider match the card type
6969
*/
7070
public EMVCard readEmvCard() throws CommunicationException {

library/src/main/java/com/github/devnied/emvnfccard/enums/EMVCardTypeEnum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public String getScheme() {
101101
*
102102
* @param pAid
103103
* card AID
104-
* @return
104+
* @return CardType or null
105105
*/
106106
public static EMVCardTypeEnum getCardTypeByAid(final String pAid) {
107107
EMVCardTypeEnum ret = null;

library/src/main/java/com/github/devnied/emvnfccard/model/enums/CountryCodeEnum.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
* alpha-2</a> codes. There are instance methods to get the country name ({@link #getName()} ), the <a
2525
* href="http://en.wikipedia.org/wiki/ISO_3166-1_alpha-3" >ISO 3166-1 alpha-3</a> code ({@link #getAlpha3()}) and the <a
2626
* href="http://en.wikipedia.org/wiki/ISO_3166-1_numeric">ISO 3166-1 numeric</a> code ({@link #getNumeric()}). In addition, there
27-
* are static methods to get a CountryCode instance that corresponds to a given alpha-2/alpha-3/numeric code (
28-
* {@link #getByCode(String)}, {@link #getByCode(int)}).
27+
* are static methods to get a CountryCode instance that corresponds to a given alpha-2/alpha-3/numeric code.
2928
* </p>
3029
*
3130
* <pre style="background-color: #EEEEEE; margin-left: 2em; margin-right: 2em; border: 1px solid black;">

0 commit comments

Comments
 (0)