adaptation of old eclipse code to Intellij
This commit is contained in:
@@ -19,20 +19,11 @@
|
||||
|
||||
package peers.sdp;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
@Getter @Setter
|
||||
public class SdpLine {
|
||||
private char type;
|
||||
private String value;
|
||||
public char getType() {
|
||||
return type;
|
||||
}
|
||||
public void setType(char type) {
|
||||
this.type = type;
|
||||
}
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user