Skip to content

Commit 5e368ac

Browse files
fix build errors - style related
1 parent b14da97 commit 5e368ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/grammar-utils/java.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ export default {
4040
const filenameRemoved = projectRemoved.replace(`/${context.filename}`, '');
4141

4242
// File is in root of src directory - no package
43-
if(filenameRemoved == projectRemoved){
44-
return "";
43+
if (filenameRemoved === projectRemoved) {
44+
return '';
4545
}
4646

47-
return filenameRemoved + "."
47+
return '${filenameRemoved}.';
4848
},
4949
};

0 commit comments

Comments
 (0)