Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
e7983783
Commit
e7983783
authored
6 years ago
by
Eugene Zhuravlev
Browse files
Options
Download
Email Patches
Plain Diff
compile session naming (IDEA-174920)
parent
9c91c1ce
Branches unavailable
Tags unavailable
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/compiler/impl/src/com/intellij/compiler/impl/CompileDriver.java
+4
-3
...er/impl/src/com/intellij/compiler/impl/CompileDriver.java
resources-en/src/messages/CompilerBundle.properties
+2
-1
resources-en/src/messages/CompilerBundle.properties
with
6 additions
and
4 deletions
+6
-4
java/compiler/impl/src/com/intellij/compiler/impl/CompileDriver.java
+
4
-
3
View file @
e7983783
...
...
@@ -372,10 +372,11 @@ public class CompileDriver {
final
CompilerMessage
message
)
{
ApplicationManager
.
getApplication
().
assertIsDispatchThread
();
final
String
contentName
=
CompilerBundle
.
message
(
forceCompile
?
"compiler.content.name.compile"
:
"compiler.content.name.make"
);
final
boolean
isUnitTestMode
=
ApplicationManager
.
getApplication
().
isUnitTestMode
();
final
CompilerTask
compileTask
=
new
CompilerTask
(
myProject
,
contentName
,
isUnitTestMode
,
!
withModalProgress
,
true
,
isCompilationStartedAutomatically
(
scope
),
withModalProgress
);
final
String
name
=
CompilerBundle
.
message
(
isRebuild
?
"compiler.content.name.rebuild"
:
forceCompile
?
"compiler.content.name.recompile"
:
"compiler.content.name.make"
);
final
CompilerTask
compileTask
=
new
CompilerTask
(
myProject
,
name
,
isUnitTestMode
,
!
withModalProgress
,
true
,
isCompilationStartedAutomatically
(
scope
),
withModalProgress
);
StatusBar
.
Info
.
set
(
""
,
myProject
,
"Compiler"
);
// ensure the project model seen by build process is up-to-date
...
...
This diff is collapsed.
Click to expand it.
resources-en/src/messages/CompilerBundle.properties
+
2
-
1
View file @
e7983783
...
...
@@ -54,7 +54,8 @@ status.compilation.aborted=Compilation aborted
status.all.up.to.date
=
All files are up-to-date
compiler.error.failed.to.delete
=
Failed to delete {0}
progress.updating.caches
=
Updating caches...
compiler.content.name.compile
=
Rebuild
compiler.content.name.rebuild
=
Rebuild
compiler.content.name.recompile
=
Recompile
compiler.content.name.make
=
Build
status.compilation.completed.successfully.with.warnings
=
Build completed successfully with {0} {0,choice, 0#warnings|1#warning|2#warnings}
status.compilation.completed.successfully
=
Build completed successfully
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help