-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edua periodic #323
Open
elb-bme
wants to merge
20
commits into
ftsrg-retelab:master
Choose a base branch
from
elb-bme:edua_periodic
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Edua periodic #323
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
9fe1584
markdown feladatok
elb-bme 3eb56fa
Create maven.yml
elb-bme 17ec8de
emergency break implemented
elb-bme 49d9f25
TrainControllerImpl 9. sor speedlimit = 100
elb-bme 61cb453
TrainControllerImpl 8. sor speedLimit= 50
elb-bme 0ad92ae
40
elb-bme b2ff9e0
speedLimit 200 A
elb-bme c03b96e
speedLimit 1 B
elb-bme e22db0e
Merge branch 'A'
elb-bme 30e4003
200
elb-bme 35ee3bb
Merge branch 'B'
elb-bme e3262be
fordítási hiba
elb-bme 7cbf91e
Merge branch 'B'
elb-bme 8738f44
hiba don
elb-bme 8294d2d
Merge branch 'master' of https://github.com/elb-bme/base
elb-bme b6d690a
test added, compilation error fixed
elb-bme 81fddd4
comment
elb-bme 845960c
teszt neve javitva
elb-bme 8e996b5
teszt javítva
elb-bme 1b761ae
periodic change of reference speed update interval
elb-bme File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | ||
|
||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Java CI with Maven | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Build with Maven | ||
run: mvn -B package --file pom.xml | ||
|
||
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | ||
- name: Update dependency graph | ||
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,9 @@ public class TrainControllerImpl implements TrainController { | |
|
||
private int step = 0; | ||
private int referenceSpeed = 0; | ||
private int speedLimit = 0; | ||
private int speedLimit = 200; | ||
private long lastUpdateTime; | ||
private long updateInterval = 1000; | ||
|
||
@Override | ||
public void followSpeed() { | ||
|
@@ -43,7 +45,22 @@ private void enforceSpeedLimit() { | |
|
||
@Override | ||
public void setJoystickPosition(int joystickPosition) { | ||
this.step = joystickPosition; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. duplán van! |
||
this.step = joystickPosition; | ||
updateReferenceSpeed(); | ||
} | ||
|
||
private void emergency_break() { | ||
if (referenceSpeed > 0) { | ||
referenceSpeed = 0; | ||
} | ||
} | ||
|
||
private void updateReferenceSpeed() { | ||
long currentTime = System.currentTimeMillis(); | ||
if (currentTime - lastUpdateTime >= updateInterval) { | ||
followSpeed(); | ||
lastUpdateTime = currentTime; | ||
} | ||
} | ||
|
||
} |
1 change: 1 addition & 0 deletions
1
...roller/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hu/bme/mit/train/controller/TrainControllerImpl.class |
1 change: 1 addition & 0 deletions
1
...ntroller/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/cloud/base/train-controller/src/main/java/hu/bme/mit/train/controller/TrainControllerImpl.java |
3 changes: 3 additions & 0 deletions
3
...rfaces/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
hu/bme/mit/train/interfaces/TrainController.class | ||
hu/bme/mit/train/interfaces/TrainSensor.class | ||
hu/bme/mit/train/interfaces/TrainUser.class |
3 changes: 3 additions & 0 deletions
3
...terfaces/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/home/cloud/base/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainUser.java | ||
/home/cloud/base/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainController.java | ||
/home/cloud/base/train-interfaces/src/main/java/hu/bme/mit/train/interfaces/TrainSensor.java |
1 change: 1 addition & 0 deletions
1
...sensor/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hu/bme/mit/train/sensor/TrainSensorImpl.class |
1 change: 1 addition & 0 deletions
1
...n-sensor/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/cloud/base/train-sensor/src/main/java/hu/bme/mit/train/sensor/TrainSensorImpl.java |
1 change: 1 addition & 0 deletions
1
...arget/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hu/bme/mit/train/sensor/TrainSensorTest.class |
1 change: 1 addition & 0 deletions
1
.../target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/cloud/base/train-sensor/src/test/java/hu/bme/mit/train/sensor/TrainSensorTest.java |
64 changes: 64 additions & 0 deletions
64
train-sensor/target/surefire-reports/TEST-hu.bme.mit.train.sensor.TrainSensorTest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite tests="1" failures="0" name="hu.bme.mit.train.sensor.TrainSensorTest" time="0.008" errors="0" skipped="0"> | ||
<properties> | ||
<property name="java.runtime.name" value="OpenJDK Runtime Environment"/> | ||
<property name="java.vm.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="sun.boot.library.path" value="/usr/lib/jvm/java-11-openjdk-amd64/lib"/> | ||
<property name="maven.multiModuleProjectDirectory" value="/home/cloud/base"/> | ||
<property name="java.vm.vendor" value="Ubuntu"/> | ||
<property name="java.vendor.url" value="https://ubuntu.com/"/> | ||
<property name="guice.disable.misplaced.annotation.check" value="true"/> | ||
<property name="path.separator" value=":"/> | ||
<property name="java.vm.name" value="OpenJDK 64-Bit Server VM"/> | ||
<property name="sun.os.patch.level" value="unknown"/> | ||
<property name="user.country" value="US"/> | ||
<property name="sun.java.launcher" value="SUN_STANDARD"/> | ||
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> | ||
<property name="user.dir" value="/home/cloud/base"/> | ||
<property name="java.vm.compressedOopsMode" value="32-bit"/> | ||
<property name="java.runtime.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="java.awt.graphicsenv" value="sun.awt.X11GraphicsEnvironment"/> | ||
<property name="os.arch" value="amd64"/> | ||
<property name="java.io.tmpdir" value="/tmp"/> | ||
<property name="line.separator" value=" | ||
"/> | ||
<property name="java.vm.specification.vendor" value="Oracle Corporation"/> | ||
<property name="os.name" value="Linux"/> | ||
<property name="classworlds.conf" value="/usr/share/maven/bin/m2.conf"/> | ||
<property name="sun.jnu.encoding" value="UTF-8"/> | ||
<property name="java.library.path" value="/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"/> | ||
<property name="maven.conf" value="/usr/share/maven/conf"/> | ||
<property name="jdk.debug" value="release"/> | ||
<property name="java.class.version" value="55.0"/> | ||
<property name="java.specification.name" value="Java Platform API Specification"/> | ||
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> | ||
<property name="os.version" value="4.15.0-206-generic"/> | ||
<property name="library.jansi.path" value="/usr/share/maven/lib/jansi-native"/> | ||
<property name="user.home" value="/home/cloud"/> | ||
<property name="user.timezone" value="Europe/Budapest"/> | ||
<property name="java.awt.printerjob" value="sun.print.PSPrinterJob"/> | ||
<property name="file.encoding" value="UTF-8"/> | ||
<property name="java.specification.version" value="11"/> | ||
<property name="user.name" value="cloud"/> | ||
<property name="java.class.path" value="/usr/share/maven/boot/plexus-classworlds-2.x.jar"/> | ||
<property name="java.vm.specification.version" value="11"/> | ||
<property name="sun.arch.data.model" value="64"/> | ||
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher test"/> | ||
<property name="java.home" value="/usr/lib/jvm/java-11-openjdk-amd64"/> | ||
<property name="user.language" value="en"/> | ||
<property name="java.specification.vendor" value="Oracle Corporation"/> | ||
<property name="awt.toolkit" value="sun.awt.X11.XToolkit"/> | ||
<property name="java.vm.info" value="mixed mode, sharing"/> | ||
<property name="java.version" value="11.0.18"/> | ||
<property name="securerandom.source" value="file:/dev/./urandom"/> | ||
<property name="java.vendor" value="Ubuntu"/> | ||
<property name="maven.home" value="/usr/share/maven"/> | ||
<property name="file.separator" value="/"/> | ||
<property name="java.version.date" value="2023-01-17"/> | ||
<property name="java.vendor.url.bug" value="https://bugs.launchpad.net/ubuntu/+source/openjdk-lts"/> | ||
<property name="sun.io.unicode.encoding" value="UnicodeLittle"/> | ||
<property name="sun.cpu.endian" value="little"/> | ||
<property name="sun.cpu.isalist" value=""/> | ||
</properties> | ||
<testcase classname="hu.bme.mit.train.sensor.TrainSensorTest" name="ThisIsAnExampleTestStub" time="0.008"/> | ||
</testsuite> |
4 changes: 4 additions & 0 deletions
4
train-sensor/target/surefire-reports/hu.bme.mit.train.sensor.TrainSensorTest.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
------------------------------------------------------------------------------- | ||
Test set: hu.bme.mit.train.sensor.TrainSensorTest | ||
------------------------------------------------------------------------------- | ||
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.186 sec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...system/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hu/bme/mit/train/system/TrainSystem.class |
1 change: 1 addition & 0 deletions
1
...n-system/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/cloud/base/train-system/src/main/java/hu/bme/mit/train/system/TrainSystem.java |
1 change: 1 addition & 0 deletions
1
...arget/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hu/bme/mit/train/system/TrainSystemTest.class |
1 change: 1 addition & 0 deletions
1
.../target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/cloud/base/train-system/src/test/java/hu/bme/mit/train/system/TrainSystemTest.java |
65 changes: 65 additions & 0 deletions
65
train-system/target/surefire-reports/TEST-hu.bme.mit.train.system.TrainSystemTest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite tests="2" failures="0" name="hu.bme.mit.train.system.TrainSystemTest" time="0" errors="0" skipped="0"> | ||
<properties> | ||
<property name="java.runtime.name" value="OpenJDK Runtime Environment"/> | ||
<property name="java.vm.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="sun.boot.library.path" value="/usr/lib/jvm/java-11-openjdk-amd64/lib"/> | ||
<property name="maven.multiModuleProjectDirectory" value="/home/cloud/base"/> | ||
<property name="java.vm.vendor" value="Ubuntu"/> | ||
<property name="java.vendor.url" value="https://ubuntu.com/"/> | ||
<property name="path.separator" value=":"/> | ||
<property name="guice.disable.misplaced.annotation.check" value="true"/> | ||
<property name="java.vm.name" value="OpenJDK 64-Bit Server VM"/> | ||
<property name="user.country" value="US"/> | ||
<property name="sun.java.launcher" value="SUN_STANDARD"/> | ||
<property name="sun.os.patch.level" value="unknown"/> | ||
<property name="user.dir" value="/home/cloud/base"/> | ||
<property name="java.vm.compressedOopsMode" value="32-bit"/> | ||
<property name="java.vm.specification.name" value="Java Virtual Machine Specification"/> | ||
<property name="java.runtime.version" value="11.0.18+10-post-Ubuntu-0ubuntu118.04.1"/> | ||
<property name="java.awt.graphicsenv" value="sun.awt.X11GraphicsEnvironment"/> | ||
<property name="os.arch" value="amd64"/> | ||
<property name="java.io.tmpdir" value="/tmp"/> | ||
<property name="line.separator" value=" | ||
"/> | ||
<property name="java.vm.specification.vendor" value="Oracle Corporation"/> | ||
<property name="os.name" value="Linux"/> | ||
<property name="classworlds.conf" value="/usr/share/maven/bin/m2.conf"/> | ||
<property name="sun.jnu.encoding" value="UTF-8"/> | ||
<property name="java.library.path" value="/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib"/> | ||
<property name="maven.conf" value="/usr/share/maven/conf"/> | ||
<property name="jdk.debug" value="release"/> | ||
<property name="java.class.version" value="55.0"/> | ||
<property name="java.specification.name" value="Java Platform API Specification"/> | ||
<property name="sun.management.compiler" value="HotSpot 64-Bit Tiered Compilers"/> | ||
<property name="os.version" value="4.15.0-206-generic"/> | ||
<property name="library.jansi.path" value="/usr/share/maven/lib/jansi-native"/> | ||
<property name="user.home" value="/home/cloud"/> | ||
<property name="user.timezone" value="Europe/Budapest"/> | ||
<property name="java.awt.printerjob" value="sun.print.PSPrinterJob"/> | ||
<property name="file.encoding" value="UTF-8"/> | ||
<property name="java.specification.version" value="11"/> | ||
<property name="user.name" value="cloud"/> | ||
<property name="java.class.path" value="/usr/share/maven/boot/plexus-classworlds-2.x.jar"/> | ||
<property name="java.vm.specification.version" value="11"/> | ||
<property name="sun.arch.data.model" value="64"/> | ||
<property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher test"/> | ||
<property name="java.home" value="/usr/lib/jvm/java-11-openjdk-amd64"/> | ||
<property name="user.language" value="en"/> | ||
<property name="java.specification.vendor" value="Oracle Corporation"/> | ||
<property name="awt.toolkit" value="sun.awt.X11.XToolkit"/> | ||
<property name="java.vm.info" value="mixed mode, sharing"/> | ||
<property name="java.version" value="11.0.18"/> | ||
<property name="securerandom.source" value="file:/dev/./urandom"/> | ||
<property name="java.vendor" value="Ubuntu"/> | ||
<property name="maven.home" value="/usr/share/maven"/> | ||
<property name="file.separator" value="/"/> | ||
<property name="java.version.date" value="2023-01-17"/> | ||
<property name="java.vendor.url.bug" value="https://bugs.launchpad.net/ubuntu/+source/openjdk-lts"/> | ||
<property name="sun.cpu.endian" value="little"/> | ||
<property name="sun.io.unicode.encoding" value="UnicodeLittle"/> | ||
<property name="sun.cpu.isalist" value=""/> | ||
</properties> | ||
<testcase classname="hu.bme.mit.train.system.TrainSystemTest" name="OverridingJoystickPositionToNegative_SetsReferenceSpeedToZero" time="0"/> | ||
<testcase classname="hu.bme.mit.train.system.TrainSystemTest" name="OverridingJoystickPosition_IncreasesReferenceSpeed" time="0"/> | ||
</testsuite> |
4 changes: 4 additions & 0 deletions
4
train-system/target/surefire-reports/hu.bme.mit.train.system.TrainSystemTest.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
------------------------------------------------------------------------------- | ||
Test set: hu.bme.mit.train.system.TrainSystemTest | ||
------------------------------------------------------------------------------- | ||
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.141 sec |
1 change: 1 addition & 0 deletions
1
...n-user/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
hu/bme/mit/train/user/TrainUserImpl.class |
1 change: 1 addition & 0 deletions
1
train-user/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/cloud/base/train-user/src/main/java/hu/bme/mit/train/user/TrainUserImpl.java |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
biztos 0 speedlimit jó?