- 1
throw new GnuPGException(String.Format("An error occurred while trying to execute command {0}.", command, exp));
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+130
throw new GnuPGException(String.Format("An error occurred while trying to execute command {0}.", command, exp));
+64
/**
* @return the timeout from the URL, in milliseconds
*/
private static long timeout(Properties props)
Из драйвера JDBC PostgreSQL.
+131
foreach (var oi in order.Items)
{
if (oi.Offer.Name == "BRNCoreDigTrial" || oi.Offer.Name == "BRNCoreDig1Pay" || oi.Offer.Name == "BRNDigUpgrade5pay" || oi.Offer.Name == "BRNDigUpgrade1Pay"
|| oi.Offer.Name == "BRN04StdDIG1Pay" || oi.Offer.Name == "BRN04StdDIG3Pay" || oi.Offer.Name == "BRNCoreDig1PayOld" || oi.Offer.Name == "BRNCoreDigTrialOld"
|| oi.Offer.Name == "BRN04DlxDIG1Pay" || oi.Offer.Name == "BRN04DlxDIG3Pay" || oi.Offer.Name == "BRN04UltDIG1Pay" || oi.Offer.Name == "BRN04UltDIG3Pay")
{
isDigital = true;
break;
}
}
+8
void Cluster::CloseConnection()
{
m_Connection->close();
if (!m_Connection->IsOK())
throw ConnectionError(m_Connection->LastError());
}
void ClusterGroup::RemoveCluster(int iIndex)
{
Cluster *pSubCluster = m_SubClusters->At[i];
pSubCluster->CloseConnection();
delete pSubCluster;
m_SubClusters->SetAt(i, NULL);
}
И потекло...
+118
<div class="is-element-border-top">
<div class="is-element-border-right">
<div class="is-element-border-bottom">
<div class="is-element-border-left">
<div class="is-element-corner-top-left">
<div class="is-element-corner-top-right">
<div class="is-element-corner-bottom-right">
<div class="is-element-corner-bottom-left">
<span class="curr_show ">
5 days </span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
Каскадная таблица стилей, ёпта.
+69
public class Tree {
...
public static int treeDepth;
...
public static void runDepthTree(Node start, String method) {
// System.out.println("looking at " + start);
++treeDepth;
Statement statement = buildStatement(start, method);
try {
statement.execute();
}
catch (Exception e) {
String msg = start + " ERROR at tree depth= " + treeDepth;
System.out.println();
}
Node[] nodes = start.getChildren();
if (nodes != null) {
int count = start.getComponentCount();
for (int i = 0; i<count; i++) {
runDepthTree((Node)nodes[i], method); // recurse
}
}
--treeDepth;
}
...
}
Я бы не точно догадался
+151
<?php
...
if( preg_match( "#\.#is", $current_rating ) )
{
list( $n1, $n2 ) = explode( ".", $current_rating );
$current_rating = floatval( $n1.".".substr( $n2, 0, 2 ) );
}
round?
+173
private static String formatDateFull(Calendar date) {
if (date == null)
return " ";
else
try {
return dateOutFormatFull.format(date.getTime());
} catch(Exception ex) {
return " ";
}
}
private static final SimpleDateFormat dateOutFormatFull = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss.SSS");
+154
/**
* Загружает файл изображения, обрабатывает и добавляет в БД
*/
function uploadPhoto($_FILES = null, $album_id = null, $ugol = null, $logo = null, $user_id = null, $hash = null) {
$filter = new Zend_Filter_Int();
$album_id = $filter->filter($album_id);
if (empty($_FILES) or empty($album_id)) {
return false;
}
...
}
+123
[Obsolete("Непонятный хлам")]
public static class CalendarHelper
{
}