Procházet zdrojové kódy

remove final from class declaration in secret-handshake exercise

vivshaw před 9 roky
rodič
revize
c9ab5aa384

+ 1
- 1
exercises/secret-handshake/src/main/java/HandshakeCalculator.java Zobrazit soubor

1
 import java.util.List;
1
 import java.util.List;
2
 
2
 
3
-final class HandshakeCalculator {
3
+class HandshakeCalculator {
4
 
4
 
5
     List<Signal> calculateHandshake(int number) {
5
     List<Signal> calculateHandshake(int number) {
6
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
6
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");