projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of git.labs.intellij.net:idea/community
[idea/community.git]
/
plugins
/
InspectionGadgets
/
test
/
com
/
siyeh
/
igtest
/
classlayout
/
Singleton.java
1
package com.siyeh.igtest.classlayout;
2
3
public class Singleton{
4
private static Singleton ourInstance = new Singleton();
5
6
public static Singleton getInstance(){
7
return ourInstance;
8
}
9
10
private Singleton(){
11
}
12
}