Skip to content

Commit 6c42590

Browse files
authored
Update README.md
1 parent ad2e172 commit 6c42590

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
</p>
44

55
# From Java To Kotlin
6-
[![Mindorks](https://img.shields.io/badge/mindorks-opensource-blue.svg)](https://mindorks.com/open-source-projects)
7-
[![Mindorks Community](https://img.shields.io/badge/join-community-blue.svg)](https://mindorks.com/join-community)
8-
> From Java To Kotlin - Your Cheat Sheet For Java To Kotlin
6+
[![HassanUsman](https://img.shields.io/badge/mindorks-opensource-blue.svg)](http://learnyandroid.blogspot.com/)
7+
[![Mindorks Community](https://img.shields.io/badge/join-community-blue.svg)](http://learnyandroid.blogspot.com/)
8+
>Java To Kotlin - Your Cheat Sheet For Java To Kotlin
99
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)
1111
---
1212

1313
> Java
@@ -313,18 +313,18 @@ map.put(3, "Mindorks");
313313
// Java 9
314314
final List<Integer> listOfNumber = List.of(1, 2, 3, 4);
315315

316-
final Map<Integer, String> keyValue = Map.of(1, "Amit",
316+
final Map<Integer, String> keyValue = Map.of(1, "Hassan",
317317
2, "Ali",
318-
3, "Mindorks");
318+
3, "Hp");
319319
```
320320

321321
> Kotlin
322322

323323
```kotlin
324324
val listOfNumber = listOf(1, 2, 3, 4)
325-
val keyValue = mapOf(1 to "Amit",
325+
val keyValue = mapOf(1 to "Hassan",
326326
2 to "Ali",
327-
3 to "Mindorks")
327+
3 to "Hp")
328328
```
329329

330330
---
@@ -687,12 +687,12 @@ internal lateinit var person: Person
687687
### Found this project useful :heart:
688688
* Support by clicking the :star: button on the upper right of this page. :v:
689689

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/)
691691
692692
693693
### License
694694
```
695-
Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE LIMITED
695+
Copyright (C) 2017 Hassan Usman
696696
697697
Licensed under the Apache License, Version 2.0 (the "License");
698698
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)