Skip to content

Commit

Permalink
Feature: add deprecation check for LPS-175951
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarks2 committed Aug 8, 2024
1 parent 44b25cb commit 7b94ad1
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,20 @@ public record JavaMethodCallDeprecation(float majorLiferayVersion, String messag
new String[] {"com.liferay.account.service.AccountRoleLocalService.checkCompanyAccountRoles()", "com.liferay.account.service.AccountRoleLocalServiceUtil.checkCompanyAccountRoles()"},
new String[0] );

public static LiferayJavaDeprecations.JavaImportDeprecation LPS_175951_UPLOAD_REQUEST_HELPER = new LiferayJavaDeprecations.JavaImportDeprecation(
7.4f,
"UploadServletRequestConfigurationHelper has been moved to UploadServlerRequestConfigurationProvider",
"LPS-175951",
new String[] {
"com.liferay.portal.kernel.upload.UploadServletRequestConfigurationHelperUtil",
"com.liferay.portal.kernel.upload.UploadServletRequestConfigurationHelper"
},
new String[] {
"com.liferay.portal.kernel.upload.configuration.UploadServletRequestConfigurationProviderUtil",
"com.liferay.portal.kernel.upload.configuration.UploadServletRequestConfigurationProvider",
});


public static LiferayJavaDeprecations.JavaMethodCallDeprecation LPS_197840_SCOPE_GROUP_TYPE = new LiferayJavaDeprecations.JavaMethodCallDeprecation(
7.4f,
"The scopeGroupType methods are no longer used and have been removed.",
Expand Down

0 comments on commit 7b94ad1

Please sign in to comment.