Remove descriptions of merged intentions (IDEA-208199; IDEA-CR-44719)

This commit is contained in:
Tagir Valeev
2019-03-11 13:05:39 +07:00
parent ef9153d8a3
commit 2c44692b49
18 changed files with 0 additions and 89 deletions
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = 0b101;
}
}
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = <spot>5</spot>;
}
}
@@ -1,7 +0,0 @@
<html>
<body>
This intention converts selected integer literal into <b>binary</b> notation
(supported in JDK 7 or higher).
<br><br>
</body>
</html>
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = 65535;
}
}
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = <spot>0xffff</spot>;
}
}
@@ -1,3 +0,0 @@
<html>
This intention converts selected integer literal into <b>decimal</b> notation.
</html>
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = 0xff;
}
}
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = <spot>255</spot>;
}
}
@@ -1,3 +0,0 @@
<html>
<body>This intention converts selected integer literal into <b>hexadecimal</b> notation.</body>
</html>
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = 020;
}
}
@@ -1,5 +0,0 @@
public class X {
void f() {
int i = <spot>16</spot>;
}
}
@@ -1,3 +0,0 @@
<html>
This intention converts selected integer literal into <b>octal</b> notation.
</html>
@@ -1,5 +0,0 @@
public class X {
void f() {
double d = 1234.56789;
}
}
@@ -1,5 +0,0 @@
public class X {
void f() {
double d = <spot>1.23456789e3</spot>;
}
}
@@ -1,6 +0,0 @@
<html>
<body>
This intention converts selected double or float literal written in <b>engineering</b> notation
into <b>plain</b> notation.
</body>
</html>
@@ -1,5 +0,0 @@
public class X {
void f() {
double d = 1.23456789e3;
}
}
@@ -1,5 +0,0 @@
public class X {
void f() {
double d = <spot>1234.56789</spot>;
}
}
@@ -1,7 +0,0 @@
<html>
<body>
This intention converts selected double or float literal written in <b>decimal</b> notation
into <b>scientific</b> notation.
<br><br>
</body>
</html>