Skip to content

Commit

Permalink
Change Javadoc that shows up as error in Android Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
cketti committed Jan 9, 2015
1 parent af9837a commit 242604f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public ChangeLog(Context context, SharedPreferences preferences, String css) {
* second time this version of the app is launched (more precisely: the second time
* {@code ChangeLog} is instantiated).
*
* @see AndroidManifest.xml#android:versionCode
* @see <a href="http://developer.android.com/guide/topics/manifest/manifest-element.html#vcode">android:versionCode</a>
*/
public int getLastVersionCode() {
return mLastVersionCode;
Expand All @@ -205,7 +205,7 @@ public int getLastVersionCode() {
*
* @return The version code of this app as described in the manifest.
*
* @see AndroidManifest.xml#android:versionCode
* @see <a href="http://developer.android.com/guide/topics/manifest/manifest-element.html#vcode">android:versionCode</a>
*/
public int getCurrentVersionCode() {
return mCurrentVersionCode;
Expand All @@ -216,7 +216,7 @@ public int getCurrentVersionCode() {
*
* @return The version name of this app as described in the manifest.
*
* @see AndroidManifest.xml#android:versionName
* @see <a href="http://developer.android.com/guide/topics/manifest/manifest-element.html#vname">android:versionName</a>
*/
public String getCurrentVersionName() {
return mCurrentVersionName;
Expand Down

0 comments on commit 242604f

Please sign in to comment.