File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
flutter-idea/src/io/flutter/module/settings Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ protected void setDirectly(@NotNull Boolean value) {
45
45
myValue = value ;
46
46
}
47
47
48
- public final void initialize (@ NotNull Boolean value ) {
48
+ public void initialize (@ NotNull Boolean value ) {
49
49
if (isSet ) {
50
50
return ;
51
51
}
52
52
setDirectly (value );
53
53
isSet = true ;
54
54
}
55
55
56
- public final void set (@ NotNull Boolean value ) {
56
+ public void set (@ NotNull Boolean value ) {
57
57
if (!isValueEqual (value )) {
58
58
//setNotificationsEnabled(false);
59
59
setDirectly (value );
@@ -71,12 +71,12 @@ public String toString() {
71
71
return get ().toString ();
72
72
}
73
73
74
- public final void addConstraint (Object constraint ) {
74
+ public void addConstraint (Object constraint ) {
75
75
// This is only a partial implementation of the Android Studio class. If someone tries to use constraints more implementation is needed.
76
76
throw new Error ("constraints not supported" );
77
77
}
78
78
79
- public final void addListener (Object listener ) {
79
+ public void addListener (Object listener ) {
80
80
// This is only a partial implementation of the Android Studio class. If someone tries to use listeners more implementation is needed.
81
81
throw new Error ("listeners not supported" );
82
82
}
You can’t perform that action at this time.
0 commit comments