Browse Source

Änderungen vom 05.12.2023 um 17:00

master
Leon Schubert 7 months ago
parent
commit
d36cbd8be7

BIN
out/production/Prog3/Praktikum03/TriangleChecker.class View File


BIN
out/test/Prog3/Praktikum03/TriangleCheckerTest.class View File


BIN
out/test/Prog3/Praktikum03/ZahlenfilterTest.class View File


+ 0
- 7
src/DiningPhilosophers/ForkTest.java View File

package Prog3.src.DiningPhilosophers;

import static org.junit.jupiter.api.Assertions.*;

class ForkTest {

}

+ 2
- 2
src/DistributedSorter/SorterClient.java View File

try (Socket socket = new Socket("localhost", 12345)) { try (Socket socket = new Socket("localhost", 12345)) {


sendLine(socket, line); sendLine(socket, line);
receiveLine(socket);
return receiveLine(socket);
} catch (Exception e) { } catch (Exception e) {
return "Error connecting to the server."; return "Error connecting to the server.";
} }
return line;
} }
} }

Loading…
Cancel
Save