|
3 | 3 | </p> |
4 | 4 |
|
5 | 5 | # From Java To Kotlin |
6 | | -[](https://mindorks.com/open-source-projects) |
7 | | -[](https://mindorks.com/join-community) |
8 | | -> From Java To Kotlin - Your Cheat Sheet For Java To Kotlin |
| 6 | +[](http://learnyandroid.blogspot.com/) |
| 7 | +[](http://learnyandroid.blogspot.com/) |
| 8 | +>Java To Kotlin - Your Cheat Sheet For Java To Kotlin |
9 | 9 |
|
10 | | -[中文支持](https://github.com/MindorksOpenSource/from-java-to-kotlin/blob/master/README-ZH.md) |
| 10 | +[中文支持](https://github.com/HassanUsman/Java-to-Kotlin/blob/master/README-ZH.md) |
11 | 11 | --- |
12 | 12 |
|
13 | 13 | > Java |
@@ -313,18 +313,18 @@ map.put(3, "Mindorks"); |
313 | 313 | // Java 9 |
314 | 314 | final List<Integer> listOfNumber = List.of(1, 2, 3, 4); |
315 | 315 |
|
316 | | -final Map<Integer, String> keyValue = Map.of(1, "Amit", |
| 316 | +final Map<Integer, String> keyValue = Map.of(1, "Hassan", |
317 | 317 | 2, "Ali", |
318 | | - 3, "Mindorks"); |
| 318 | + 3, "Hp"); |
319 | 319 | ``` |
320 | 320 |
|
321 | 321 | > Kotlin |
322 | 322 |
|
323 | 323 | ```kotlin |
324 | 324 | val listOfNumber = listOf(1, 2, 3, 4) |
325 | | -val keyValue = mapOf(1 to "Amit", |
| 325 | +val keyValue = mapOf(1 to "Hassan", |
326 | 326 | 2 to "Ali", |
327 | | - 3 to "Mindorks") |
| 327 | + 3 to "Hp") |
328 | 328 | ``` |
329 | 329 |
|
330 | 330 | --- |
@@ -687,12 +687,12 @@ internal lateinit var person: Person |
687 | 687 | ### Found this project useful :heart: |
688 | 688 | * Support by clicking the :star: button on the upper right of this page. :v: |
689 | 689 |
|
690 | | -[Check out Mindorks awesome open source projects here](https://mindorks.com/open-source-projects) |
| 690 | +[Check out Hassan's awesome blog here](http://learnyandroid.blogspot.com/) |
691 | 691 |
|
692 | 692 |
|
693 | 693 | ### License |
694 | 694 | ``` |
695 | | - Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE LIMITED |
| 695 | + Copyright (C) 2017 Hassan Usman |
696 | 696 |
|
697 | 697 | Licensed under the Apache License, Version 2.0 (the "License"); |
698 | 698 | you may not use this file except in compliance with the License. |
|
0 commit comments