IDEA 2016.1 changes in SDK
Is there a place where I can read release notes and changes in the SDK?
For example
public class StoragePathMacros {
/** @deprecated */
@Deprecated
public static final String PROJECT_FILE = "$PROJECT_FILE$";
}
Is now deprecated. How can I know how to update the code?
请先登录再写评论。
There is no central overview of all changes or dedicated release notes for API changes.
As for StoragePathMacros#PROJECT_FILE, this can be removed completely AFAIU.
Please see State and Storage classes java doc. Yes, `PROJECT_FILE` should be removed.