mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 18:51:56 +01:00
8 lines
151 B
Java
8 lines
151 B
Java
package com.doerzbach;
|
|
|
|
public final class Uhrzeit {
|
|
static boolean entspricht(Zeit zeit1,Zeit zeit2){
|
|
return zeit1.equals(zeit2);
|
|
}
|
|
}
|