Skip to content

Commit 75102d0

Browse files
committed
Doc change: fix adt download page, misc doc fixes.
Change-Id: Ifa04ea6f31cf0677bf95263188a137fd8dd721eb
1 parent b0016e2 commit 75102d0

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

docs/html/guide/developing/tools/emulator.jd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@ currently supported.</p>
11421142
emulator checks the value of the <code>http_proxy</code> environment variable at
11431143
startup and uses its value automatically, if defined. </p>
11441144

1145-
<p>You can use the <code>-verbose-proxy</code> option to diagnose proxy
1145+
<p>You can use the <code>-debug-proxy</code> option to diagnose proxy
11461146
connection problems.</p>
11471147

11481148
<a name="connecting"></a>

docs/html/guide/practices/design/performance.jd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ address some of them here.</p>
279279
<p>On devices without a JIT, it is true that invoking methods via a
280280
variable with an exact type rather than an interface is slightly more
281281
efficient. (So, for example, it was cheaper to invoke methods on a
282-
<code>Map map</code> than a <code>HashMap map</code>, even though in both
282+
<code>HashMap map</code> than a <code>Map map</code>, even though in both
283283
cases the map was a <code>HashMap</code>.) It was not the case that this
284284
was 2x slower; the actual difference was more like 6% slower. Furthermore,
285285
the JIT makes the two effectively indistinguishable.</p>

docs/html/guide/topics/providers/content-providers.jd

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -176,17 +176,7 @@ people (both controlled by the Contacts content provider) are:
176176
<p>
177177
<p style="margin-left: 2em">{@code android.provider.Contacts.Phones.CONTENT_URI}
178178
<br/>{@code android.provider.Contacts.Photos.CONTENT_URI}
179-
</p>
180-
181-
<p>
182-
Similarly, the URIs for the table of recent phone calls and the table
183-
of calendar entries are:
184-
</p>
185-
186-
<p>
187-
<p style="margin-left: 2em">{@code android.provider.CallLog.Calls.CONTENT_URI}
188-
<br/>{@code android.provider.Calendar.CONTENT_URI}
189-
</p>
179+
</p>
190180

191181
<p>
192182
The URI constant is used in all interactions with the content provider.

docs/html/sdk/adt_download.jd

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,18 @@ ADT Installation</a>.</p>
2222
<th>Notes</th>
2323
</tr>
2424
<tr>
25-
<td>0.9.6</td>
26-
<td><a href="http://dl-ssl.google.com/android/ADT-0.9.6.zip">ADT-0.9.6.zip</a></td>
25+
<td>0.9.7</td>
26+
<td><a href="http://dl-ssl.google.com/android/ADT-0.9.7.zip">ADT-0.9.7.zip</a></td>
2727
<td><nobr>{@adtZipBytes} bytes</nobr></td>
2828
<td>{@adtZipChecksum}</td>
29-
<td>Requires SDK Tools, Revision 5 <em><nobr>March 2009</nobr></em></td>
29+
<td>Requires SDK Tools, Revision 6 <em><nobr>May 2010</nobr></em></td>
30+
</tr>
31+
<tr>
32+
<td>0.9.6</td>
33+
<td><a href="http://dl-ssl.google.com/android/ADT-0.9.6.zip">ADT-0.9.6.zip</a></td>
34+
<td><nobr>7456339 bytes</nobr></td>
35+
<td>ea45d271be52b87b5dd1c9fb17536223</td>
36+
<td>Requires SDK Tools, Revision 5 <em><nobr>March 2010</nobr></em></td>
3037
</tr>
3138
<tr>
3239
<td>0.9.5</td>

0 commit comments

Comments
 (0)