Skip to content
This repository has been archived by the owner on Feb 12, 2018. It is now read-only.

Commit

Permalink
Interface specification should be Class, Assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
peppertree committed Jul 22, 2014
1 parent 5379051 commit 82dd21f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions View.ascx.vb
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,8 @@ Namespace Connect.Modules.UserManagement.AccountUpdate
Dim objInterface As Object = Nothing

If ExternalInterface.Contains(",") Then
Dim strAssembly As String = ExternalInterface.Split(Char.Parse(","))(0).Trim
Dim strClass As String = ExternalInterface.Split(Char.Parse(","))(1).Trim
Dim strClass As String = ExternalInterface.Split(Char.Parse(","))(0).Trim
Dim strAssembly As String = ExternalInterface.Split(Char.Parse(","))(1).Trim
objInterface = System.Activator.CreateInstance(strAssembly, strClass).Unwrap
End If

Expand Down

0 comments on commit 82dd21f

Please sign in to comment.