Skip to content
Snippets Groups Projects
Commit 3a5beaff authored by Vincent Aravantinos's avatar Vincent Aravantinos
Browse files

Turned a package private method into a protected one (helpful for MSC GUI developments)

refs 1855
parent 4b0694ae
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ import org.fortiss.tooling.kernel.service.IElementCompositorService;
* @author igna
* @author $Author: hoelzl $
* @version $Rev: 18709 $
* @ConQAT.Rating GREEN Hash: 0D4A75D8CBAE75C7B23E119046E1172C
* @ConQAT.Rating YELLOW Hash: 32C14792C4699325B202604912B59C03
*/
abstract class ConnectionCompositorBase<HE extends IHierarchicElement, S extends EObject, T extends EObject>
implements IConnectionCompositor<HE, S, T> {
......@@ -154,7 +154,7 @@ abstract class ConnectionCompositorBase<HE extends IHierarchicElement, S extends
}
/** Alters connector name if duplicate name already exists. */
void avoidDuplicateConnectorName(IHierarchicElement container, IConnector connector) {
protected void avoidDuplicateConnectorName(IHierarchicElement container, IConnector connector) {
String orig = ((INamedElement)connector).getName();
int num;
if(sameName(container, connector, orig)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment