Project

General

Profile

« Previous | Next » 

Revision 52891

Added by Tsampikos Livisianos over 5 years ago

add empty constructors

View differences:

ItemIdentifier.java
6 6
 * Created by tsampikos on 31/10/2016.
7 7
 */
8 8
public class ItemIdentifier {
9
    private final String type;
10
    private final String value;
9
    private String type;
10
    private String value;
11 11

  
12
    public ItemIdentifier() {
13
    }
14

  
12 15
    public ItemIdentifier(String type, String value) {
13 16
        this.type = type;
14 17
        this.value = value;

Also available in: Unified diff