File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -206,12 +206,6 @@ class Dub {
206
206
m_packageManager = new PackageManager(pkg_root);
207
207
}
208
208
209
- deprecated (" Use the overload that takes `(NativePath pkg_root, NativePath root)`" )
210
- this (NativePath pkg_root)
211
- {
212
- this (pkg_root, pkg_root);
213
- }
214
-
215
209
/**
216
210
* Get the `PackageManager` instance to use for this `Dub` instance
217
211
*
@@ -417,14 +411,6 @@ class Dub {
417
411
/* * Returns the root path (usually the current working directory).
418
412
*/
419
413
@property NativePath rootPath() const { return m_rootPath; }
420
- // / ditto
421
- deprecated (" Changing the root path is deprecated as it has non-obvious pitfalls " ~
422
- " (e.g. settings aren't reloaded). Instantiate a new `Dub` instead" )
423
- @property void rootPath(NativePath root_path)
424
- {
425
- m_rootPath = root_path;
426
- if (! m_rootPath.absolute) m_rootPath = getWorkingDirectory() ~ m_rootPath;
427
- }
428
414
429
415
// / Returns the name listed in the dub.json of the current
430
416
// / application.
You can’t perform that action at this time.
0 commit comments