@@ -1152,31 +1152,31 @@ struct AssociationUpdateQuery
1152
1152
/**
1153
1153
* See_Also: $(D MimeAppsListFile.addAssociation)
1154
1154
*/
1155
- @safe ref typeof (this ) addAssociation(string mimeType, string desktopId) nothrow
1155
+ @safe ref typeof (this ) addAssociation(string mimeType, string desktopId) return nothrow
1156
1156
{
1157
1157
_operations ~= Operation(mimeType, desktopId, Operation.Type.add);
1158
1158
return this ;
1159
1159
}
1160
1160
/**
1161
1161
* See_Also: $(D MimeAppsListFile.setAddedAssocations)
1162
1162
*/
1163
- @safe ref typeof (this ) setAddedAssocations(Range )(string mimeType, Range desktopIds) if (isInputRange! Range && is (ElementType! Range : string ))
1163
+ @safe ref typeof (this ) setAddedAssocations(Range )(string mimeType, Range desktopIds) return if (isInputRange! Range && is (ElementType! Range : string ))
1164
1164
{
1165
1165
_operations ~= Operation(mimeType, MimeAppsGroup.joinApps(desktopIds), Operation.Type.setAdded);
1166
1166
return this ;
1167
1167
}
1168
1168
/**
1169
1169
* See_Also: $(D MimeAppsListFile.removeAssociation)
1170
1170
*/
1171
- @safe ref typeof (this ) removeAssociation(string mimeType, string desktopId) nothrow
1171
+ @safe ref typeof (this ) removeAssociation(string mimeType, string desktopId) return nothrow
1172
1172
{
1173
1173
_operations ~= Operation(mimeType, desktopId, Operation.Type.remove);
1174
1174
return this ;
1175
1175
}
1176
1176
/**
1177
1177
* See_Also: $(D MimeAppsListFile.setDefaultApplication)
1178
1178
*/
1179
- @safe ref typeof (this ) setDefaultApplication(string mimeType, string desktopId) nothrow
1179
+ @safe ref typeof (this ) setDefaultApplication(string mimeType, string desktopId) return nothrow
1180
1180
{
1181
1181
_operations ~= Operation(mimeType, desktopId, Operation.Type.setDefault);
1182
1182
return this ;
0 commit comments