correct error

This commit is contained in:
iboyeau 2023-03-03 11:13:21 +01:00
parent 36c5d7ca20
commit f75303b254

View File

@ -1,10 +1,10 @@
package fr.ntr; package fr.ntr;
public class ResourceBlock { public class RessourceUnit {
private User user; private User user;
private double bandwith; private double bandwith;
private ResourceBlock (User user, double bandwith) { private RessourceUnit (User user, double bandwith) {
this.user = user; this.user = user;
this.bandwith = bandwith; this.bandwith = bandwith;
} }