Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
public static MyProfile getInstance(Project project)
{
   return getOrCreateInstance(MyProfile.class, MyProfile::new, project);
} 

or

Code Block
public static MyProfile getInstance(Project project)
{ 
    return getOrCreateInstanceWithNullSupport(MyProfile.class, MyProfile::new, project); 
}