Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes to javadoc linting errors #5

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/main/java/com/android/volley/VolleyLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@

/**
* Logging helper class.
* <p/>
* to see Volley logs call:<br/>
* <p>
* to see Volley logs call:<br>
* {@code <android-sdk>/platform-tools/adb shell setprop log.tag.Volley VERBOSE}
* </p>
*/
public class VolleyLog {
public static String TAG = "Volley";
Expand All @@ -37,9 +38,9 @@ public class VolleyLog {
/**
* Customize the log tag for your application, so that other apps
* using Volley don't mix their logs with yours.
* <br />
* <br>
* Enable the log property for your tag before starting your app:
* <br />
* <br>
* {@code adb shell setprop log.tag.&lt;tag&gt;}
*/
public static void setTag(String tag) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/android/volley/toolbox/BasicNetwork.java
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ private byte[] entityToBytes(HttpEntity entity) throws IOException, ServerError
}

/**
* Converts Headers[] to Map<String, String>.
* Converts {@code Headers[]} to {@code Map<String, String>}.
*/
protected static Map<String, String> convertHeaders(Header[] headers) {
Map<String, String> result = new TreeMap<String, String>(String.CASE_INSENSITIVE_ORDER);
Expand Down