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

Remove deprecated methods in ebean-api - BeanState #2633

Merged
merged 1 commit into from
Apr 6, 2022

Conversation

rbygrave
Copy link
Member

@rbygrave rbygrave commented Apr 6, 2022

Migrate as per:

  /**
   * Deprecated migrate to loadedProps().
   */
  @Deprecated
  default Set<String> getLoadedProps() {
    return loadedProps();
  }


  /**
   * Deprecated migrate to changedProps().
   */
  @Deprecated
  default Set<String> getChangedProps() {
    return changedProps();
  }


  /**
   * Deprecated migrate to dirtyValues().
   */
  @Deprecated
  default Map<String, ValuePair> getDirtyValues() {
    return dirtyValues();
  }



  /**
   * Deprecated migrate to loadErrors().
   */
  @Deprecated
  default Map<String, Exception> getLoadErrors() {
    return loadErrors();
  }



  /**
   * Deprecated migrate to sortOrder().
   */
  @Deprecated
  default int getSortOrder() {
    return sortOrder();
  }

@rbygrave rbygrave self-assigned this Apr 6, 2022
@rbygrave rbygrave added this to the 13.1.0 milestone Apr 6, 2022
@rbygrave rbygrave merged commit 10fa07f into master Apr 6, 2022
@rbygrave rbygrave deleted the feature/deprecated_BeanState branch April 6, 2022 09:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant