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
0b85e21c
Commit
0b85e21c
authored
6 years ago
by
Roman Shevchenko
Committed by
intellij-monorepo-bot
6 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Cleanup (dead code)
GitOrigin-RevId: 95d8f6a7e40e0dfa5c1d35bb2f1739fbca55b20c
parent
6ea8f006
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntBuildFileNodeDescriptor.java
+0
-5
.../lang/ant/config/explorer/AntBuildFileNodeDescriptor.java
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntExplorerTreeStructure.java
+1
-25
...ij/lang/ant/config/explorer/AntExplorerTreeStructure.java
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntNodeDescriptor.java
+0
-2
.../intellij/lang/ant/config/explorer/AntNodeDescriptor.java
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntTargetNodeDescriptor.java
+0
-5
...lij/lang/ant/config/explorer/AntTargetNodeDescriptor.java
with
1 addition
and
37 deletions
+1
-37
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntBuildFileNodeDescriptor.java
+
0
-
5
View file @
0b85e21c
...
@@ -55,9 +55,4 @@ final class AntBuildFileNodeDescriptor extends AntNodeDescriptor {
...
@@ -55,9 +55,4 @@ final class AntBuildFileNodeDescriptor extends AntNodeDescriptor {
super
.
customize
(
component
);
super
.
customize
(
component
);
}
}
}
}
@Override
public
boolean
isAutoExpand
()
{
return
myBuildFile
.
shouldExpand
();
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntExplorerTreeStructure.java
+
1
-
25
View file @
0b85e21c
/*
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com.intellij.lang.ant.config.explorer
;
package
com.intellij.lang.ant.config.explorer
;
import
com.intellij.ide.util.treeView.AbstractTreeStructure
;
import
com.intellij.ide.util.treeView.AbstractTreeStructure
;
...
@@ -158,11 +144,6 @@ final class AntExplorerTreeStructure extends AbstractTreeStructure {
...
@@ -158,11 +144,6 @@ final class AntExplorerTreeStructure extends AbstractTreeStructure {
super
(
project
,
parentDescriptor
);
super
(
project
,
parentDescriptor
);
}
}
@Override
public
boolean
isAutoExpand
()
{
return
true
;
}
@Override
@Override
public
Object
getElement
()
{
public
Object
getElement
()
{
return
myRoot
;
return
myRoot
;
...
@@ -191,10 +172,5 @@ final class AntExplorerTreeStructure extends AbstractTreeStructure {
...
@@ -191,10 +172,5 @@ final class AntExplorerTreeStructure extends AbstractTreeStructure {
public
boolean
update
()
{
public
boolean
update
()
{
return
true
;
return
true
;
}
}
@Override
public
boolean
isAutoExpand
()
{
return
true
;
}
}
}
}
}
This diff is collapsed.
Click to expand it.
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntNodeDescriptor.java
+
0
-
2
View file @
0b85e21c
...
@@ -13,8 +13,6 @@ abstract class AntNodeDescriptor extends NodeDescriptor implements CellAppearanc
...
@@ -13,8 +13,6 @@ abstract class AntNodeDescriptor extends NodeDescriptor implements CellAppearanc
super
(
project
,
parentDescriptor
);
super
(
project
,
parentDescriptor
);
}
}
public
abstract
boolean
isAutoExpand
();
@Override
@Override
public
void
customize
(
@NotNull
SimpleColoredComponent
component
)
{
public
void
customize
(
@NotNull
SimpleColoredComponent
component
)
{
component
.
append
(
toString
(),
SimpleTextAttributes
.
REGULAR_ATTRIBUTES
);
component
.
append
(
toString
(),
SimpleTextAttributes
.
REGULAR_ATTRIBUTES
);
...
...
This diff is collapsed.
Click to expand it.
plugins/ant/src/com/intellij/lang/ant/config/explorer/AntTargetNodeDescriptor.java
+
0
-
5
View file @
0b85e21c
...
@@ -121,11 +121,6 @@ final class AntTargetNodeDescriptor extends AntNodeDescriptor {
...
@@ -121,11 +121,6 @@ final class AntTargetNodeDescriptor extends AntNodeDescriptor {
return
myHighlightedText
;
return
myHighlightedText
;
}
}
@Override
public
boolean
isAutoExpand
()
{
return
false
;
}
@Override
@Override
public
void
customize
(
@NotNull
SimpleColoredComponent
component
)
{
public
void
customize
(
@NotNull
SimpleColoredComponent
component
)
{
getHighlightedText
().
customize
(
component
);
getHighlightedText
().
customize
(
component
);
...
...
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