Skip to content

Commit

Permalink
Merge pull request #1738 from DmitryLitvintsev/fix/2.10/rb8379
Browse files Browse the repository at this point in the history
    move execution of the superclass method before any concrete class…
  • Loading branch information
paulmillar committed Jul 14, 2015
2 parents ccb3b13 + 1b70957 commit 3143b6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -40,8 +40,8 @@ public abstract class GssFtpDoorV1 extends AbstractFtpDoorV1
@Override
public void init()
{
_gssFlavor = "unknown";
super.init();
_gssFlavor = "unknown";
}

@Override
Expand Down
Expand Up @@ -49,12 +49,12 @@ public class KerberosFtpDoorV1 extends GssFtpDoorV1
@Override
public void init()
{
super.init();
_gssFlavor = "k5";
ftpDoorName = "Kerberos FTP";
if (_kdcListOption != null) {
_kdcList = _kdcListOption.split(",");
}
super.init();
}

@Override
Expand Down

0 comments on commit 3143b6e

Please sign in to comment.