Fix for KT-14248 J2K: Invalid constructor formatting after conversion

Caused by `\n\n long mLong = 0;` leading line breaks
This commit is contained in:
Simon Ogorodnik
2016-10-17 17:56:20 +03:00
parent f1c371143c
commit b51f5c5bd9
6 changed files with 33 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
public class AppInfo {
long mLastUpdateTime;
String mName;
String mIcon;
public AppInfo(String name, String icon, long lastUpdateTime) {
mName = name;
mIcon = icon;
mLastUpdateTime = lastUpdateTime;
}
}