Skip to content

Instantly share code, notes, and snippets.

@GlebMaltsev
Last active March 10, 2017 14:03
Show Gist options
  • Save GlebMaltsev/d71379f336162072d12273e08a811411 to your computer and use it in GitHub Desktop.
Save GlebMaltsev/d71379f336162072d12273e08a811411 to your computer and use it in GitHub Desktop.
@SuppressWarnings("UnnecessaryLocalVariable") // Local variable to store meaning of condition
@Override
public boolean isSupportedFavorite() {
boolean isNotLibraryRootFileEntity = fileEntityStack != null
&& fileEntityStack.size() >= 1
&& !fileEntityStack.peek().equals(library.getRootFileEntity());
return isNotLibraryRootFileEntity;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment