Skip to content

Commit 9ba65d3

Browse files
committed
Fix links
1 parent 338fe95 commit 9ba65d3

File tree

1 file changed

+7
-4
lines changed
  • java-17/manual/few-modules/separately/with-deps

1 file changed

+7
-4
lines changed

java-17/manual/few-modules/separately/with-deps/README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@
66
---
77
Modules (declared via `module-info.java`):
88
- `manual.fewmodules.separately.withdeps.loading`:
9-
- [`Main`](loading/src/ru/ispras/j17/manual/fewmodules/separately/nodeps/loading/Main.java) - a class containing the `main` method, where an instance of the `CustomClassLoader` class is created, the `Cat` class is loaded using it, creating an instance of the class `Cat` and calling the `Cat::talk` method;
10-
- [`CustomClassLoader`](loading/src/ru/ispras/j17/manual/fewmodules/separately/nodeps/loading/CustomClassLoader.java) - a class that is an implementation of a custom class loader;
9+
- [`Main`](loading/src/ru/ispras/j17/manual/fewmodules/separately/withdeps/loading/Main.java) - a class containing
10+
the `main` method, where an instance of the `CustomClassLoader` class is created, the `Cat` class is loaded using it, creating an instance of the class `Cat` and calling the `Cat::talk` method;
11+
- [`CustomClassLoader`](loading/src/ru/ispras/j17/manual/fewmodules/separately/withdeps/loading/CustomClassLoader.java) - a class that is an implementation of a custom class loader;
1112
- `manual.fewmodules.separately.withdeps.loadable`:
12-
- [`Cat`](loadable/src/ru/ispras/j17/manual/fewmodules/separately/nodeps/loadable/Cat.java) - loadable class with the `talk` method, which prints the string *"Meow"* to `stdout`;
13+
- [`Cat`](loadable/src/ru/ispras/j17/manual/fewmodules/separately/withdeps/loadable/Cat.java) - loadable class with
14+
the `talk` method, which prints the string *"Meow"* to `stdout`;
1315
- `manual.fewmodules.separately.withdeps.dependency`:
14-
- [Dog](dependency/src/ru/ispras/j17/manual/fewmodules/separately/withdeps/dependency/Dogjava) - used in the module `manual.fewmodules.separately.withdeps.loadable` class with a `talk` method that prints the string *"Woof"* to `stdout`.
16+
- [Dog](dependency/src/ru/ispras/j17/manual/fewmodules/separately/withdeps/dependency/Dog.java) - used in the
17+
module `manual.fewmodules.separately.withdeps.loadable` class with a `talk` method that prints the string *"Woof"* to `stdout`.
1518

1619
### Run
1720
---

0 commit comments

Comments
 (0)