All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.server.core.InternString Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.server.core;

/**
 * Used to reduce memory consumption of strings used in deployment processing.
 */
public final class InternString {

  /**
   * Return the shared instance of this string.
   */
  public static String intern(String s) {
    return s == null ? null : s.intern();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy