Skip to content

Commit cfb6d10

Browse files
authored
Merge pull request #2383
newMain
2 parents 919ab2a + 3c03834 commit cfb6d10

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

1.JavaSyntax/src/com/javarush/task/pro/task09/task0907/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static String toHex(int decimalNumber) {
2727
}
2828

2929
public static int toDecimal(String hexNumber) {
30-
if (hexNumber == null || hexNumber.isEmpty()) {
30+
if (hexNumber == null || hexNumber.isEmpty()) {
3131
return 0;
3232
}
3333
int decimalNumber = 0;

1.JavaSyntax/src/com/javarush/task/pro/task15/task1513/Solution.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ public static void main(String[] args) {
1515
Path path = Path.of(str);
1616
System.out.println(path.getRoot());
1717
}
18-
}
19-
18+
}

3.JavaMultithreading/src/com/javarush/task/task21/task2109/Solution.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,4 @@ public int hashCode() {
111111
return super.hashCode();
112112
}
113113
}
114-
115-
116114
}

3.JavaMultithreading/src/com/javarush/task/task23/task2309/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,4 @@ public String getQuery() {
6969
}
7070
}.execute();
7171
}
72-
7372
}

0 commit comments

Comments
 (0)