Facebook
From Lousy Dolphin, 9 Years ago, written in Java.
This paste is a reply to Untitled from Silly Giraffe - view diff
Embed
Download Paste or View Raw
Hits: 791
  1. public Spolka getAktywnaSpolka(){
  2.         return spolki.stream().filter(s -> {
  3.             return this.isActive(s));
  4.         }).findFirst().orElse(null);
  5.     }