Skip to content

Commit 5205f42

Browse files
authored
Merge pull request #69 from javaistic/patch
Remove unused components
2 parents 1cc2544 + 1ff2706 commit 5205f42

13 files changed

+6
-31
lines changed

src/pages/docs/basic-input-output.mdx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ description: In this tutorial, you will learn simple ways to display output to
44

55
---
66

7-
import { Heading } from '@/components/Heading'
8-
import Link from 'next/link'
97
import { TipInfo } from '@/components/Tip'
108

11-
12-
139
## Java Output
1410
In Java, you can simply use
1511

src/pages/docs/comments.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ title: Java Comments
33
description: In this tutorial, you will learn about Java comments, why we use them, and how to use comments in right way.
44
---
55

6-
import { Heading } from '@/components/Heading'
7-
import Link from 'next/link'
6+
87
import { TipInfo } from '@/components/Tip'
98

109

src/pages/docs/expressions-statements-blocks.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@ title: Java Expressions, Statements and Blocks
33
description: In this tutorial, you will learn about Java expressions, Java statements, difference between expression and statement, and Java blocks with the help of examples.
44
---
55

6-
import { Heading } from '@/components/Heading'
7-
import Link from 'next/link'
86
import { TipInfo } from '@/components/Tip'
97

10-
118
In previous chapters, we have used expressions, statements, and blocks without much explaining about them. Now that you know about variables, operators, and literals, it will be easier to understand these concepts.
129

1310
## Java Expressions

src/pages/docs/hello-world.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ title: Hello World
33
description: In this tutorial, you will learn to write "Hello World" program in Java.
44
---
55

6-
import { Heading } from '@/components/Heading'
76
import { List, ListItemGood } from '@/components/List'
8-
import Link from 'next/link'
7+
98

109
A "Hello, World!" is a simple program that outputs `Hello, World!` on the screen. Since it's a very simple program, it's often used to introduce a new programming language to a newbie.
1110

src/pages/docs/if-else-statement.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ title: Java if...else Statement
33
description: n this tutorial, you will learn about control flow statements using Java if and if...else statements with the help of examples.
44
---
55

6-
import { Heading } from '@/components/Heading'
6+
77
import { TipInfo } from '@/components/Tip'
8-
import Link from 'next/link'
98
import NextImage from 'next/image'
109

1110
In programming, we use the `if..else` statement to run a block of code among more than one alternatives.

src/pages/docs/installation.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ title: Installation
33
description: Learn how to get Java up and running in your project.
44
---
55

6-
import { Heading } from '@/components/Heading'
7-
import Link from 'next/link'
8-
96
## Installation
107

118
Since installation process is slightly different in different devices. So we prefer that you should check the [official installation documentation](https://www.java.com/en/download/help/download_options.html) to install **☕ Java** on your device.

src/pages/docs/introduction.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ title: Introduction
33
description: A guick intro to Java programming language
44
---
55

6-
import { Heading } from '@/components/Heading'
76
import { List, ListItemGood,ListItemBad } from '@/components/List'
8-
import Link from 'next/link'
7+
98

109
**Java** is a powerful **general-purpose programming language**. It is used to **develop desktop and mobile applications, big data processing, embedded systems**, and so on. According to **Oracle**, the company that owns **Java**, **Java runs on 3 billion devices worldwide**, which makes Java one of the most popular programming languages.
1110

src/pages/docs/jvm-jre-jdk.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ title: Java JDK, JRE and JVM
33
description: Definations of JDK, JRE and JVM
44
---
55

6-
import { Heading } from '@/components/Heading'
7-
import Link from 'next/link'
86
import NextImage from 'next/image'
97

108

src/pages/docs/operators.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ description: In this tutorial, you'll learn about different types of operators i
44

55
---
66

7-
import { Heading } from '@/components/Heading'
87
import { TipInfo } from '@/components/Tip'
9-
import Link from 'next/link'
108

119

1210
Operators are symbols that perform operations on variables and values. For example,`+` is an operator used for addition, while `*` is also an operator used for multiplication.

src/pages/docs/variables-and-literals.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ title: Java Variables and Literals
33
description: Variables and Literals in Java
44
---
55

6-
import { Heading } from '@/components/Heading'
7-
import Link from 'next/link'
86
import { TipInfo } from '@/components/Tip'
97

108

0 commit comments

Comments
 (0)