fix: replace imgur with s3 for english guide without conflict (#36053)

* fix: imgur to s3 for englsh guide without conflict

(cherry picked from commit 9c9f15abf4e755feab79ef7090dacdcf497ea7b6)

* fix: revert unrelated changes
This commit is contained in:
Ahmad Abdolsaheb
2019-05-20 21:24:51 +03:00
committed by Parth Parth
parent 18e15830d9
commit a16539becf
36 changed files with 66 additions and 66 deletions

View File

@@ -12,7 +12,7 @@ Java provides 4 levels of access modifiers. This means that you can modify acces
These access modifiers can be applied to fields, methods and classes (Classes are a special case, we will look at them at the end of this artice). Here is a quick overview<sup>1</sup> of what the access levels are for each Access Modifier:
#### Access Modifiers Table Reference:
![Access Modifiers Table](https://i.imgur.com/zoMspyn.png)
![Access Modifiers Table](https://cdn-media-1.freecodecamp.org/imgr/zoMspyn.png)
#### Private Access Modifier
Allows a variable or method to only be accessed in the class in which it was created. No other class beyond the class that created the variable or method can access it. This is closely similar to your internal organs. They are only accessible to the owner. To make a variable or method private, you simply append the `private` keyword before the variable or method type, like `private int age`.