Craig P. Motlin
Craig P. Motlin
There are a few places where I believe the warning may be true, like wrapCopy() methods. On the other hand, I've never seen valuable information come from the warning (never...
Is this still a draft @nikhilnanivadekar? I'm curious what you did in TeamCity to get this to work. The only surprise here is misc.xml. That file is partially churn and...
@nikhilnanivadekar I'll watch that issue, thanks. Did you experiment with subsets? Removing iml but not the xml files for example?
I'm late to this thread but I'd love to hear more about the operators like `+` and `+=`. Over the years we've taken some inspiration from Scala. Their collection framework...
Full signature: ``` java public Multimap toMultimap( Function
If you want to attempt it in a minor version, you'd probably have to only do implementations (no interfaces) or make the default implementation to throw new UnsupportedOperationException and override...
Thanks everyone. @bamapookie Yes, we configure auto-import. Given that JetBrains themselves recommend ignoring these files, I think we should go ahead with your suggestion. In @mohrezaei's list, this would remove...
I mentioned in #687 that I'm looking for ways to keep these files checked into version control for TeamCity to read, but not interfere with you if you want to...
I don't think I've run into this situation myself but it sounds like the setting rebase.autoStash true might help too. https://git-scm.com/docs/git-config#git-config-rebaseautoStash On Wed, Jan 9, 2019 at 10:37 AM Mohammad...
It's not always advantageous to cache the hash code. Consider an immutable singleton set containing a String. Caching the hash code would increase memory usage and not have a material...