Kapt: Allow to make CompilerConfiguration mutable again

(cherry picked from commit 0780de8)
This commit is contained in:
Yan Zhulanow
2016-09-09 22:47:15 +03:00
parent 60c807ed96
commit 95dde72ae6

View File

@@ -96,11 +96,10 @@ public class CompilerConfiguration {
public void setReadOnly(boolean readOnly) {
if (readOnly != this.readOnly) {
checkReadOnly();
this.readOnly = readOnly;
}
}
public boolean isReadOnly() {
return readOnly;
}