Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71647af1 authored by Robert Schaub's avatar Robert Schaub Committed by Android Git Automerger
Browse files

am cf05e318: am 2a1be1bc: Docs: Added declaration to code fragment Bug: 21030774

* commit 'cf05e318':
  Docs: Added declaration to code fragment Bug: 21030774
parents 0adc5f37 cf05e318
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -139,7 +139,8 @@ rotates the device).
<p>Here is an example of a singleton class that provides {@code RequestQueue} and
{@code ImageLoader} functionality:</p>

<pre>private static MySingleton mInstance;
<pre>public class MySingleton {
    private static MySingleton mInstance;
    private RequestQueue mRequestQueue;
    private ImageLoader mImageLoader;
    private static Context mCtx;