~ubuntu-branches/ubuntu/quantal/zeroc-ice/quantal

« back to all changes in this revision

Viewing changes to cs/test/Ice/dictMapping/Collocated.cs

  • Committer: Bazaar Package Importer
  • Author(s): Cleto Martín
  • Date: 2011-06-25 19:44:26 UTC
  • mfrom: (6.1.16 sid)
  • Revision ID: james.westby@ubuntu.com-20110625194426-9fip3u3hlwheohvl
Tags: 3.4.2-1
New upstream release (Closes: #631456).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// **********************************************************************
2
2
//
3
 
// Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved.
 
3
// Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
4
4
//
5
5
// This copy of Ice is licensed to you under the terms described in the
6
6
// ICE_LICENSE file included in this distribution.
31
31
        return 0;
32
32
    }
33
33
 
34
 
    public static void Main(String[] args)
 
34
    public static int Main(String[] args)
35
35
    {
36
36
        int status = 0;
37
37
        Ice.Communicator communicator = null;
38
38
 
 
39
#if !COMPACT
39
40
        Debug.Listeners.Add(new ConsoleTraceListener());
 
41
#endif
40
42
 
41
43
        try
42
44
        {
62
64
            }
63
65
        }
64
66
 
65
 
        if(status != 0)
66
 
        {
67
 
            System.Environment.Exit(status);
68
 
        }
 
67
        return status;
69
68
    }
70
69
}