mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Remove descriptions of merged intentions (IDEA-208199; IDEA-CR-44719)
This commit is contained in:
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = 0b101;
|
||||
}
|
||||
}
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = <spot>5</spot>;
|
||||
}
|
||||
}
|
||||
-7
@@ -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>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = 65535;
|
||||
}
|
||||
}
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = <spot>0xffff</spot>;
|
||||
}
|
||||
}
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
<html>
|
||||
This intention converts selected integer literal into <b>decimal</b> notation.
|
||||
</html>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = 0xff;
|
||||
}
|
||||
}
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = <spot>255</spot>;
|
||||
}
|
||||
}
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
<html>
|
||||
<body>This intention converts selected integer literal into <b>hexadecimal</b> notation.</body>
|
||||
</html>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = 020;
|
||||
}
|
||||
}
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
int i = <spot>16</spot>;
|
||||
}
|
||||
}
|
||||
-3
@@ -1,3 +0,0 @@
|
||||
<html>
|
||||
This intention converts selected integer literal into <b>octal</b> notation.
|
||||
</html>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
double d = 1234.56789;
|
||||
}
|
||||
}
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
double d = <spot>1.23456789e3</spot>;
|
||||
}
|
||||
}
|
||||
-6
@@ -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>
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
double d = 1.23456789e3;
|
||||
}
|
||||
}
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
public class X {
|
||||
void f() {
|
||||
double d = <spot>1234.56789</spot>;
|
||||
}
|
||||
}
|
||||
-7
@@ -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>
|
||||
Reference in New Issue
Block a user