Kapt: Allow to make CompilerConfiguration mutable again
(cherry picked from commit 0780de8) (cherry picked from commit 95dde72)
This commit is contained in:
committed by
Yan Zhulanow
parent
8d9e6f402c
commit
16a9941549
@@ -118,11 +118,10 @@ public class CompilerConfiguration {
|
|||||||
|
|
||||||
public void setReadOnly(boolean readOnly) {
|
public void setReadOnly(boolean readOnly) {
|
||||||
if (readOnly != this.readOnly) {
|
if (readOnly != this.readOnly) {
|
||||||
checkReadOnly();
|
|
||||||
this.readOnly = readOnly;
|
this.readOnly = readOnly;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isReadOnly() {
|
public boolean isReadOnly() {
|
||||||
return readOnly;
|
return readOnly;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user