adaptation of old eclipse code to Intellij

This commit is contained in:
2024-11-18 13:08:35 +07:00
parent db13021be9
commit c501ebcbb6
70 changed files with 335 additions and 665 deletions

View File

@@ -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;
}
}