Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2020-08-31 02:31:23 +0000
committerJonah Graham2020-08-31 13:05:18 +0000
commit69323c8af807e877a87fca74a16ff659333af654 (patch)
tree8c157b2478dc7398228c67f623ab34046b99fe6f
parent88b2322c38419969f8b82ff2f346b655a6877f56 (diff)
downloadorg.eclipse.cdt-69323c8af807e877a87fca74a16ff659333af654.tar.gz
org.eclipse.cdt-69323c8af807e877a87fca74a16ff659333af654.tar.xz
org.eclipse.cdt-69323c8af807e877a87fca74a16ff659333af654.zip
Improve some of the documentation of removed deprecated API
-rw-r--r--doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html12
1 files changed, 3 insertions, 9 deletions
diff --git a/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html b/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html
index cd0b1ce9016..f23e743f686 100644
--- a/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html
+++ b/doc/org.eclipse.cdt.doc.isv/guide/deprecated_API_removals.html
@@ -44,7 +44,6 @@
<li><a href="#oldStyleProjects">Partial removal of CDT 3.X project support.</a></li>
<li><a href="#optionsAPI">Removal of CDT Core Options API.</a></li>
<li><a href="#terminal">TM Terminal has major changes to support new color and preference functionality.</a></li>
- <li><a href="#pathutil">Remove org.eclipse.cdt.core.browser.PathUtil.</a></li>
<li><a href="#casesensitive">Environment Variables are always case sensitive in CDT.</a></li>
</ol>
<p>
@@ -76,6 +75,8 @@
<li>IGDBJtagDevice.getDefaultIpAddress has been removed. Implement IGDBJtagConnection and specify default_connection in JTagDevice extension XML instead. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=566462" target="_blank">Bug 566462</a>.</li>
<li>IGDBJtagDevice.getDefaultPortNumber has been removed. Implement IGDBJtagConnection and specify default_connection in JTagDevice extension XML instead. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=566462" target="_blank">Bug 566462</a>.</li>
<li>IGDBJtagDevice.doRemote has been removed. Implement IGDBJtagConnection.doRemote instead. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=566462" target="_blank">Bug 566462</a>.</li>
+ <li>PTY constructor PTY(boolean console) has been removed. Use PTY(Mode mode) instead.</li>
+ <li>org.eclipse.cdt.core.browser.PathUtil has been removed. Use org.eclipse.cdt.utils.PathUtil instead. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=564123" target="_blank">Bug 564123</a>.
</ul>
</p>
@@ -266,14 +267,7 @@
</li>
</ul>
- <h3>13. <a name="pathutil">Remove org.eclipse.cdt.core.browser.PathUtil.</a></h3>
- <p>
- The deprecated class org.eclipse.cdt.core.browser.PathUtil has been removed. Use
- org.eclipse.cdt.utils.PathUtil instead. See <a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=564123" target="_blank">Bug 564123</a>.
- </p>
-
- <h3>14. <a name="casesensitive">Environment Variables are always case sensitive in CDT.</a></h3>
+ <h3>13. <a name="casesensitive">Environment Variables are always case sensitive in CDT.</a></h3>
<p>
The handling of environment and build variables in CDT has changed to being case sensitive. This means
some API changes to remove methods such as isVariableCaseSensitive (see full list below). The PATH and

Back to the top